Reference Language | Libraries | Comparison | Changes
Locates a character or String within another String. By default, searches from the end of the String, but can also work backwards from a given index, allowing for the locating of all instances of the character or String.
string.lastIndexOf(val)
string.lastIndexOf(val, from)
string: a variable of type String
val: the value to search for - char or String
from: the index to work backwards from
The index of val within the String, or -1 if not found.
Corrections, suggestions, and new documentation should be posted to the Forum.
This reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License and is based on the Arduino reference. Code samples in the reference are released into the public domain.