StringPrototype.indexOf(Object, Object, Double) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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