atoi

(atoi string)

The function atoi (ASCII to Integer) converts a given string to an integer.

Examples

: (atoi "32.1")

32

: (atoi "32.7")

32

: (atoi "55")

55

: (atoi "55abcde")

55

: (atoi "abcde")

0