contents   index   previous   next



Clib.atol()

syntax:

Clib.atol(str)

where:

str - string to convert to a number.

 

return:

number - str converted.

 

description:

This method converts the ASCII string str to a long integer, if str can be converted. This method is the same as the Clib.atoi() method, since longs and integers are the same in ScriptEase.

 

see:

Clib.atoi()

 

 


Clib.ceil()