3 out of 4 rated this helpful - Rate this topic

indexOf Method (String) (JavaScript)

JavaScript - Internet Explorer 10

Returns the position of the first occurrence of a substring.

strObj. indexOf(subString[, startIndex])
strObj

Required. A String object or string literal.

subString

Required. The substring to search for in the string

startIndex

Optional. The index at which to begin searching the String object. If omitted, search starts at the beginning of the string.

The indexOf method returns the beginning of the substring in the String object. If the substring is not found, -1 is returned.

If startindex is negative, startindex is treated as zero. If it is greater than the highest index, it is treated as the highest index.

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

The following example illustrates the use of the indexOf method.

var str = "original equipment manufacturer";

var s = "equip is at position " + str.indexOf("equip");
s += "<br />";
s += "abc is at position " + str.indexOf("abc");

document.write(s);

// Output:
// equip is at position 9
// abc is at position -1

Supported in the following document modes: Quirks, Internet Explorer 6 standards, Internet Explorer 7 standards, Internet Explorer 8 standards, Internet Explorer 9 standards, Internet Explorer 10 standards. Also supported in Windows Store apps. See Version Information.

Applies To: String Object (JavaScript)

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.