lastIndexOf 方法
2008-01-05 20:26:43 来源:WEB开发网核心提示: 返回 String 对象中子字符串最后出现的位置,strObj.lastIndexOf(substring[, startindex])参数strObj必选项,lastIndexOf 方法,String 对象或文字,substring必选项, 从右向左执行查找,否则,要在 String 对象内查找的子字符串,star
返回 String 对象中子字符串最后出现的位置。
strObj.lastIndexOf(substring[, startindex])
参数
strObj
必选项。String 对象或文字。
substring
必选项。要在 String 对象内查找的子字符串。
startindex
可选项。该整数值指出在 String 对象内进行查找的开始索引位置。假如省略,则查找从字符串的末尾开始。
说明
lastIndexOf 方法返回一个整数值,指出 String 对象内子字符串的开始位置。假如没有找到子字符串,则返回 -1。
假如 startindex 是负数,则 startindex 被当作零。假如它比最大字符位置索引还大,则它被当作最大的可能索引。
从右向左执行查找。否则,该方法和 indexOf 相同。
下面的示例说明了 lastIndexOf 方法的用法:
function lastIndexDemo(str2) {
var str1 = "BABEBIBOBUBABEBIBOBU"
var s = str1.lastIndexOf(str2);
return(s);
}
Tags:lastIndexOf 方法
编辑录入:爽爽 [复制链接] [打 印]- ››lastIndexOf 方法
- ››方法 (Array)
- ››方法和作用域中的内部类
- ››方法调用的绑定
更多精彩
赞助商链接