String.remove()
Description
Modify in place a String removing chars from the provided index to the end of the String or from the provided index to index plus count.
Syntax
myString.remove(index)
myString.remove(index, count)
Parameter Values
- myString: a variable of type String.
- index: The position at which to start the remove process (zero indexed). Allowed data types: unsigned int.
- count: The number of characters to remove. Allowed data types: unsigned int.
Return Values
- Nothing
Example Code
The result on Serial Monitor:
※ NOTES AND WARNINGS:
If the string is modified, it is highly recommended using String.reserve() to prevent the memory fragmentation issue
See Also
- Language : Arduino - String
- Language : String.c_str()
- Language : String.charAt()
- Language : String.compareTo()
- Language : String.concat()
- Language : String.endsWith()
- Language : String.equals()
- Language : String.equalsIgnoreCase()
- Language : String.getBytes()
- Language : String.indexOf()
- Language : String.lastIndexOf()
- Language : String.length()
- Language : String.replace()
- Language : String.reserve()
- Language : String.setCharAt()
- Language : String.startsWith()
- Language : String.substring()
- Language : String.toCharArray()
- Language : String.toDouble()
- Language : String.toFloat()
- Language : String.toInt()
- Language : String.toLowerCase()
- Language : String.toUpperCase()
- Language : String.trim()
- Example : String Tutorials
※ ARDUINO BUY RECOMMENDATION
Arduino UNO R3 | |
Arduino Starter Kit |