This page is also available in 2 other languages
Change language 

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

myString.toInt()

Parameters

myString: a variable of type String.

Returns

If no valid conversion could be performed because the String doesn’t start with a integer number, a zero is returned. Data type: long.

See also