String.substring()

Description

Get a substring of a String. The starting index is inclusive (the corresponding character is included in the substring), but the optional ending index is exclusive (the corresponding character is not included in the substring). If the ending index is omitted, the substring continues to the end of the String.

Syntax

myString.substring(from)

myString.substring(from, to)

Parameter Values

  • myString: a variable of type String.
  • from: the index to start the substring at.
  • to (optional): the index to end the substring before.

Return Values

  • The substring.

Example Code

void setup() { Serial.begin(9600); String myString = "ArduinoGetStarted.com"; String sub = myString.substring(0, 7); Serial.println(myString); Serial.println(sub); } void loop() { }

The result on Serial Monitor:

COM6
Send
ArduinoGetStarted.com Arduino
Autoscroll Show timestamp
Clear output
9600 baud  
Newline  

※ NOTES AND WARNINGS:

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

See Also

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