此方法返回指定值最后一次出现的调用 String 对象内的索引,开始搜索fromIndex或者-1如果未找到该值。
用法
string.lastIndexOf(searchValue[, fromIndex])
参数详细信息
searchValue- 表示要搜索的值的字符串。
fromIndex− 开始搜索的调用字符串中的位置。它可以是介于 0 和字符串长度之间的任何整数。默认值为 0。
返回值
返回最后找到的出现的索引,否则 -1 如果未找到。
示例
var str1 = new String( "This is string one and again string" );
var index = str1.lastIndexOf( "string" );
console.log("lastIndexOf found String:" + index );
index = str1.lastIndexOf( "one" );
console.log("lastIndexOf found String:" + index );
在编译时,它将在 JavaScript 中生成相同的代码。
其输出如下 -
lastIndexOf found String:29 lastIndexOf found String:15
相关用法
- TypeScript String localeCompare()用法及代码示例
- TypeScript String concat()用法及代码示例
- TypeScript String charCodeAt()用法及代码示例
- TypeScript String slice()用法及代码示例
- TypeScript String split()用法及代码示例
- TypeScript String search()用法及代码示例
- TypeScript String indexOf()用法及代码示例
- TypeScript String replace()用法及代码示例
- TypeScript String substring()用法及代码示例
- TypeScript String charAt()用法及代码示例
- TypeScript String substr()用法及代码示例
- TypeScript Array forEach()用法及代码示例
- TypeScript Array map()用法及代码示例
注:本文由纯净天空筛选整理自 TypeScript - String lastIndexOf()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。