next up previous contents
Next: slice Up: Methods Previous: indexOf   Contents


lastIndexOf

Description
Finds the last occurrence of a substring within a String object.


Syntax

  1. StringObj.lastIndexOf(substring, [startIndex])
  2. "String Literal".lastIndexOf(substring, [startIndex])


Parameters

substring
An integer or string specifying the substring to be searched for within stringObj.
startIndex
Optional. An integer specifying the starting point in stringObj to search for substring.


Returns

The lastIndexOf method returns an integer value indicating the beginning of the substring within the String object. If the substring is not found, a -1 is returned.

If startindex is negative, startindex is treated as zero. If it is larger than the greatest character position index, it is treated as the largest possible index.

Searching is performed right to left.


Example

s = "That is an example for String.indexOf.
    This is an example for String.lastIndexOf";
i = s.lastIndexOf("example");
trace(i);
//output: 50




Copyright ©2000-2010 Shanghai TopCMM Software Technologies. All Rights Reserved.