This is an old revision of the document!
ACSUtils provides functions to convert strings to numbers.
These simply return 0 on error:
atoi("123") -> 123
atof("123.456") -> 123.456
atoi("abc") -> 0
These return error status and result, and allow specifying an arbitrary base:
Error statuses are:
PARSENUMBER_SUCCESS – number successfully parsed, you can use the resultPARSENUMBER_BADFORMAT - the number could not be parsed at all. You may not use the result. r2 is unchanged.