2015-05-03 18:40:09 +10:00
|
|
|
<h3>to_int() function</h3>
|
2013-02-21 23:38:09 +01:00
|
|
|
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>
|
2015-05-03 18:40:09 +10:00
|
|
|
to_int(<i>string</i>)</p>
|
2013-02-21 23:38:09 +01:00
|
|
|
|
|
|
|
<p><h4>Arguments</h4>
|
|
|
|
<!-- List args for functions here-->
|
2013-05-13 21:11:47 +10:00
|
|
|
<i> string</i> → is string. The String to convert to integer number.</p>
|
2013-02-21 23:38:09 +01:00
|
|
|
|
|
|
|
<p><h4>Example</h4>
|
|
|
|
<!-- Show example of function.-->
|
2015-05-03 18:40:09 +10:00
|
|
|
to_int('123') → 123</p>
|