js判断字符串是否含有某些字符串
时间: 2023-07-08 15:10:56 浏览: 119
JavaScript 实现判断是否为字符串
可以使用JavaScript中的`includes()`方法来判断字符串是否包含某些字符串。该方法会返回一个布尔值,如果字符串包含指定的子字符串,则返回true,否则返回false。例如:
```
let str = "hello world";
console.log(str.includes("world")); // true
console.log(str.includes("foo")); // false
```
另外,如果想忽略大小写进行匹配,可以先将字符串转换为小写或大写,再使用`includes()`方法进行匹配,例如:
```
let str = "Hello World";
console.log(str.toLowerCase().includes("hello")); // true
console.log(str.toUpperCase().includes("WORLD")); // true
```
阅读全文