14 lines
424 B
Plaintext
Raw Normal View History

<h3>toint function</h3>
Converts a string to integer number. Nothing changed if a value cannot be converted to integer (e.g '123asd' is invalid).
<p><h4>Syntax</h4>
toint(<i>string</i>)</p>
<p><h4>Arguments</h4>
<!-- List args for functions here-->
2013-05-13 21:11:47 +10:00
<i> string</i> &rarr; is string. The String to convert to integer number.</p>
<p><h4>Example</h4>
<!-- Show example of function.-->
2013-05-13 21:11:47 +10:00
toint('123') &rarr; 123</p>