Microsoft® JScript lastIndexOf Method |
Language Reference Version 1 |
Finds the last occurrence of a substring within a String object.
strVariable.lastIndexOf(substring, startindex)
"String Literal".lastIndexOf(substring, startindex)The lastIndexOf 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 end of the string.
The lastIndexOf 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 right to left. Otherwise, this method is identical to indexOf.
© 1997 by Microsoft Corporation. All rights reserved.
file: /Techref/language/jscript/js815.htm, 3KB, , updated: 1997/9/30 02:45, local time: 2024/11/16 14:44,
3.22.75.223: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/js815.htm"> lastIndexOf Method</A> |
Did you find what you needed? |