indexOf 使用
时间: 2023-08-16 08:15:33 浏览: 81
indexOf 函数是用来查找一个字符串中指定子字符串的位置的方法。它返回子字符串在原字符串中第一次出现的索引位置,如果没有找到则返回 -1。
使用方法如下:
```javascript
const str = 'Hello, world!';
const subStr = 'world';
const index = str.indexOf(subStr);
console.log(index); // 输出 7
```
在上面的例子中,我们定义了一个字符串 `str`,然后使用 `indexOf` 方法查找子字符串 `'world'` 在 `str` 中的位置。由于 `'world'` 第一次出现在索引位置 7,所以 `index` 的值为 7。
需要注意的是,`indexOf` 方法对大小写是敏感的。如果要忽略大小写,可以使用 `toLowerCase` 或 `toUpperCase` 方法将字符串转换为统一的大小写再进行查找。例如:
```javascript
const str = 'Hello, world!';
const subStr = 'hello';
const index = str.toLowerCase().indexOf(subStr.toLowerCase());
console.log(index); // 输出 0
```
在上面的例子中,我们将 `str` 和 `subStr` 都转换为小写字母后再进行查找,这样就可以忽略大小写了。由于 `'hello'` 出现在索引位置 0,所以 `index` 的值为 0。
希望以上解答能够帮助到你!如果有任何疑问,请随时提问。
阅读全文