Changes between Initial Version and Version 1 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/String/StrToInt


Ignore:
Timestamp:
08/20/10 09:08:14 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/String/StrToInt

    v1 v1  
     1= StrToInt =
     2Convert string to integer number
     3
     4{{{
     5int StrToInt(string& strVal);
     6}}}
     7
     8== Parameters ==
     9
     10 * strVal - string containing an integer number
     11
     12== Return Value ==
     13
     14 * Returns the integer value of the string
     15
     16== Remarks ==
     17
     18If the string does not contain a number the result will be zero.
     19
     20== Example ==
     21
     22{{{
     23string strVal = "123";
     24int nVal = StrToInt(strVal);
     25}}}
     26
     27
     28== See Also ==
     29
     30 * StrToFloat
     31 * StrFmt
     32