Searches for the last occurrence of the substring inside of string. Returns the index of where substring was found, or -1 if it wasn't found. The first position in the string is position 0. |
lastIndexOf(string, substring)
String, Tuple, or List object - The object to search through.
String substring - The string to search for.
String - The index where the substring was last found in the string. |
|