判断字符串中是否包含指定字符串
时间: 2024-06-15 08:08:46 浏览: 252
php strstr查找字符串中是否包含某些字符的查找函数
以下是两种判断字符串中是否包含指定字符串的方法:
1. 使用search()方法[^1]:
```javascript
var string = "foo";
var expr = /oo/;
var position = string.search(expr);
if (position !== -1) {
console.log("字符串中包含指定字符串");
} else {
console.log("字符串中不包含指定字符串");
}
```
2. 使用includes()方法[^2]:
```javascript
var string = "foo";
var substring = "oo";
if (string.includes(substring)) {
console.log("字符串中包含指定字符串");
} else {
console.log("字符串中不包含指定字符串");
}
```
阅读全文