js lastindexof()和indexof
时间: 2023-12-19 16:29:28 浏览: 74
js中substr,substring,indexOf,lastIndexOf的用法小结
5星 · 资源好评率100%
indexOf()和lastIndexOf()都是JavaScript中的字符串方法,用于查找字符串中指定元素的位置。其中indexOf()方法从字符串的开头开始查找,而lastIndexOf()方法从字符串的末尾开始查找。如果找到指定元素,则返回该元素在字符串中的索引值,否则返回-1。两个方法都可以接受一个可选的参数,用于指定开始查找的位置。
举个例子,假设有一个字符串str = "hello world",我们可以使用indexOf()方法查找字符串中第一个字母l的位置,代码如下:
```
const str = "hello world";
const index = str.indexOf("l");
console.log(index); // 输出 2
```
同样,我们可以使用lastIndexOf()方法查找字符串中最后一个字母l的位置,代码如下:
```
const str = "hello world";
const index = str.lastIndexOf("l");
console.log(index); // 输出 9
```
阅读全文