indexOf Method (String) (JavaScript)
Returns the position of the first occurrence of a substring.
strObj. indexOf(subString[, startIndex])
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)