toInt()

Description

Converts a valid String to an integer. The input string should start with an integral number. If the string contains non-integral 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 integral number, a zero is returned.)

Example

StringToIntExample

See also

String


Language Reference Home

The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.