This page is also available in 3 other languages

toInt()

[StringObject Function]

Description

Converts a valid String to an integer. The input string should start with an integer number. If the string contains non-integer numbers, the function will stop performing the conversion.

Syntax

string.toInt()

Parameters

string: a variable of type String

Returns

long

If no valid conversion could be performed because the string doesn’t start with a integer number, a zero is returned.

See also