Changes between Initial Version and Version 1 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/String/StrToInt
- Timestamp:
- 08/20/10 09:08:14 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/String/StrToInt
v1 v1 1 = StrToInt = 2 Convert string to integer number 3 4 {{{ 5 int 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 18 If the string does not contain a number the result will be zero. 19 20 == Example == 21 22 {{{ 23 string strVal = "123"; 24 int nVal = StrToInt(strVal); 25 }}} 26 27 28 == See Also == 29 30 * StrToFloat 31 * StrFmt 32