lastIndexOf()是TypeScript中的内置函数,用于获取指定值最后一次出现的调用String对象内的索引。句法:
string.lastIndexOf(searchValue[, fromIndex])
参数:此方法接受上面提到和下面描述的两个参数:
- searchValue:此参数是一个字符串,代表要搜索的值。
- fromIndex:此参数是调用字符串中从其开始搜索的位置。
返回值:此方法返回最后找到的索引,否则返回-1。
范例1:
的JavaScript
<script>
// Original strings
var str1 = new String('TypeScript | \
String lastIndexOf() Method with example');
// use of String lastIndexOf() Method
console.log(str1.lastIndexOf("String"));
</script>
输出:
17
范例2:
的JavaScript
<script>
// Original strings
var str1 = new String('TypeScript | \
String lastIndexOf() Method with example');
// use of String lastIndexOf() Method
console.log(str1.lastIndexOf("Geeks"));
</script>
输出:
-1
相关用法
- Typescript Array lastIndexOf()用法及代码示例
- Javascript String lastIndexOf()用法及代码示例
- JavaScript Array lastIndexOf()用法及代码示例
- Node.js Buffer.lastIndexOf()用法及代码示例
- Lodash _.lastIndexOf()用法及代码示例
- Typescript String charAt()用法及代码示例
- Typescript String charCodeAt()用法及代码示例
- Typescript String concat()用法及代码示例
- Typescript String indexOf()用法及代码示例
- Typescript String localeCompare()用法及代码示例
- Typescript String replace()用法及代码示例
- Typescript String search()用法及代码示例
- Typescript String slice()用法及代码示例
- Typescript String substring()用法及代码示例
- Typescript String valueOf()用法及代码示例
- Typescript String toString()用法及代码示例
- Typescript String toUpperCase()用法及代码示例
- Typescript String toLowerCase()用法及代码示例
- Typescript String toLocaleUpperCase()用法及代码示例
注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 TypeScript | String lastIndexOf() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。