Returns the character position where the first occurrence of a substring occurs within a String object.
|
---|
strObj.indexOf(subString[, startIndex]) |
Arguments
-
strObj
-
Required. A String object or literal.
-
subString
-
Required. Substring to search for within the String object.
-
startIndex
-
Optional. Integer value specifying the index to begin searching within the String object. If omitted, searching starts at the beginning of the string.
Remarks
Example
The following example illustrates the use of the indexOf method.
| Copy Code |
---|
function IndexDemo(str2){
var str1 = "BABEBIBOBUBABEBIBOBU"
var s = str1.indexOf(str2);
return(s);
} |
Requirements
See Also