Go back to Richel Bilderbeek's homepage.

Go back to Richel Bilderbeek's C++ page.

 

 

 

 

 

(C++) VCL WideToInt

 

WideToInt is a convert code snippet to convert WideString to integer.

 

///WideToInt converts WideString to integer
///From http://www.richelbilderbeek.nl/CppWideToInt.htm
int WideToInt(const WideString& s)
{
  const AnsiString a(s);
  return a.ToInt();
}

 

 

 

 

 

Go back to Richel Bilderbeek's C++ page.

Go back to Richel Bilderbeek's homepage.

 

Valid XHTML 1.0 Strict