StringPrototype.indexOf(Object, Object, Double) Method

Definition

Searches for the first 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 indexOf(System::Object ^ thisob, System::Object ^ searchString, double position);
[Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.String_indexOf)]
public static int indexOf (object thisob, object searchString, double position);
[<Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.HasThisObject, Microsoft.JScript.JSBuiltin.String_indexOf)>]
static member indexOf : obj * obj * double -> int
Public Shared Function indexOf (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 first occurrence of searchString, if it is found.

Attributes

Applies to

See also