How to convert string variable to integer in Arduino

How to convert a string variable to int, long in Arduino code?

Answer

There are two types of string: String() object and char array.

void setup() { Serial.begin(9600); String myString = "125"; int myInt = myString.toInt(); Serial.println(myInt); } void loop() { }
Newbiely | Arduino IDE 2.3.8
──
File
Edit
Sketch
Tools
Help
Arduino Uno
Newbiely.ino
···
8 Serial.println("Hello World!");
Output
Serial Monitor
Message (Enter to send message to 'Arduino Uno' on 'COM15')
New Line
9600 baud
125
Ln 11, Col 1
Arduino Uno on COM15
2
void setup() { Serial.begin(9600); char myString[6] = "126"; int myInt = atoi(myString); Serial.println(myInt); } void loop() { }
Newbiely | Arduino IDE 2.3.8
──
File
Edit
Sketch
Tools
Help
Arduino Uno
Newbiely.ino
···
8 Serial.println("Hello World!");
Output
Serial Monitor
Message (Enter to send message to 'Arduino Uno' on 'COM15')
New Line
9600 baud
126
Ln 11, Col 1
Arduino Uno on COM15
2

Buy Arduino

1 × Arduino UNO Buy on Amazon
1 × USB 2.0 cable type A/B Buy on Amazon
1 × Jumper Wires Buy on Amazon
Disclosure: Some links in this section are Amazon affiliate links. If you make a purchase through these links, we may earn a commission at no extra cost to you.
Additionally, some links direct to products from our own brand, DIYables .

The Best Arduino Starter Kit

※ OUR MESSAGES