Microsoft® JScript indexOf Method |
Language Reference Version 1 |
Finds the first occurrence a substring within a String object.
strVariable.indexOf(substring, startindex)
"String Literal".indexOf(substring, startindex)The indexOf method syntax has these arguments:
Part Description substring The substring to search for within the String object. startindex An optional integer value specifying the index to begin searching within the String object. If omitted, searching begins at the beginning of the string.
The indexOf method returns an integer value indicating the beginning of the substring within the String object. If the substring is not found, a -1 is returned.If startindex is negative, startindex is treated as zero. If it is larger than the greatest character position index, it is treated as the largest possible index.
Searching is performed from left to right. Otherwise, this method is identical to lastIndexOf.
© 1997 by Microsoft Corporation. All rights reserved.
file: /Techref/language/jscript/js809.htm, 3KB, , updated: 1997/9/30 02:45, local time: 2024/11/16 14:43,
3.144.248.178:LOG IN
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/techref/language/jscript/js809.htm"> indexOf Method</A> |
Did you find what you needed? |