lastIndexOf lastIndexOf
Returns the position (in the first argument) of the last occurrence of the second parameter. Returns -1 if there is no match.
Category
String
Function syntax
lastIndexOf(<parameters>)
Parameter
Parameter
Type
string
String
specified value
String
Signature and returned type
lastIndexOf(<string>,<string>)
Returns an integer.
Example
lastIndexOf("Hello", "l")
Returns 3.
Explanation:
In “Hello”, the last occurrence of “l” is at position 3.
recommendation-more-help
8fe209f2-717b-4d36-904c-71a9532007af