在JavaScript中,查找字符串中的子字符串可以通过多种方式实现,包括使用indexOf()、includes()、search()、正则表达式等方法。以下是这些方法的一些基本用法:
1. 使用indexOf()
indexOf() 方法可以返回某个指定的字符串值在字符串中首次出现的位置。如果没有找到字符串,则返回-1。
let str = "Hello, world!";
let position = str.indexOf("world");
console.log(position); // 输出:7
2. 使用includes()
includes() 方法用来判断一个字符串是否包...
秀秀 发布于2024-07-04 14:13 51次
阅读