string_to_intLib.string_to_int : string -> int
Translates from a string to an integer.
An application string_to_int s returns the integer
denoted by s, if such exists.
If the string cannot be translated to an integer.
> string_to_int "123";
val it = 123: int
> string_to_int "~123";
val it = ~123: int
> string_to_int "foo";
Exception- HOL_ERR (at Lib.string_to_int: not convertable) raised
Similar functionality can be obtained from the Standard ML Basis
Library function Int.fromString.