String.toInt()

Descrição

Converte uma String válida para um valor inteiro. A String deve começar com um número inteiro. Se a String conter números não inteiros, a função não irá realizar a conversão.

Sintaxe

minhaString.toInt()

Parâmetros

  • minhaString: uma variável do tipo String

Retorna

O valor inteiro contido na String - long

Se não foi possível realizar uma conversão válida, porque a String não começa com um número inteiro, o valor zero é retornado.

Código de Exemplo

void setup() { Serial.begin(9600); String myString = "20"; long myInt = myString.toInt(); Serial.println(myInt); } void loop() { }

The result on Serial Monitor:

COM6
Send
20
Autoscroll Show timestamp
Clear output
9600 baud  
Newline  

※ Notas e Advertências:

If the string is modified, it is highly recommended using String.reserve() to prevent the memory fragmentation issue

Ver Também

Exemplo : Tutoriais String (Em Inglês)

ARDUINO BUY RECOMMENDATION

Arduino UNO R3
Arduino Starter Kit
Please note: These are Amazon affiliate links. If you buy the components through these links, We will get a commission at no extra cost to you. We appreciate it.

※ OUR MESSAGES