StringPrototype.lastIndexOf(Object, Object, Double) Method

Definition

Searches for the last occurrence of the specified string in the specified object, starting from the specified character position.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 static int lastIndexOf(System::Object ^ thisob, System::Object ^ searchString, double position);
[Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.String_lastIndexOf)]
public static int lastIndexOf (object thisob, object searchString, double position);
[<Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.String_lastIndexOf)>]
static member lastIndexOf : obj * obj * double -> int
Public Shared Function lastIndexOf (thisob As Object, searchString As Object, position As Double) As Integer

Parameters

thisob
Object

The object that this method is acting upon.

searchString
Object

The string to search for.

position
Double

The position at which to start the search.

Returns

The position of the last occurrence of searchString, if it is found.

Attributes

Applies to

See also