Language Reference lastIndexOf Method


Description

Finds the last occurrence of a substring within a string object.

Syntax

intIndex = strVariable.lastIndexOf( substring, startindex )
intIndex = "String Literal".lastIndexOf( substring, startindex )

Arguments

substring: The substring to search for within the string object.
startindex: An optional integer value specifying the index to begin searching within the string object. If omitted, searching begins at the end of the string.

Return Value

An integer value indicating the beginning of the substring within the string object. If the substring is not found, a -1 is returned.

Remarks

If startindex is out of bounds (either negative or larger than the greatest character position index), startindex will be treated as zero if negative, and as the largest possible index if too large.

Searching is performed right to left. Otherwise, this method is identical to indexOf.