characters = StrToLong(string,value)
D0 D1 D2
LONG StrToLong(STRPTR, LONG *)
Converts decimal string into LONG value. Returns number of characters converted. Skips over leading spaces & tabs (included in count). If no decimal digits are found (after skipping leading spaces & tabs), StrToLong returns -1 for characters converted, and puts 0 into value.
StrToLong() will process as many digits as are available, but it will stop processing before the signed 32-bit integer value overflows.
Before V39, if there were no convertible characters it returned the number of leading white-space characters (space and tab in this case).