js字符串中查找字符串是否存在
时间: 2024-01-02 20:05:11 浏览: 165
浅析Node.js查找字符串功能
可以使用字符串的 `indexOf` 方法来查找一个子字符串是否存在于另一个字符串中。该方法返回子字符串在父字符串中第一次出现的位置,如果没有找到则返回 -1。
示例代码:
```javascript
const str = 'hello world';
const subStr = 'world';
if (str.indexOf(subStr) !== -1) {
console.log(`${subStr} 存在于 ${str} 中`);
} else {
console.log(`${subStr} 不存在于 ${str} 中`);
}
```
阅读全文