js字符串匹配正则表达式
时间: 2023-06-11 08:10:40 浏览: 153
在 JavaScript 中,可以使用正则表达式进行字符串匹配。例如:
```javascript
let str = "Hello, world!";
// 使用正则表达式匹配字符串
let regex = /world/;
console.log(regex.test(str)); // true
// 或者使用RegExp对象构造函数来创建正则表达式
regex = new RegExp("world");
console.log(regex.test(str)); // true
```
在上面的例子中,使用了 `/world/` 正则表达式来匹配字符串中是否包含 "world" 子串,并且打印了匹配结果。如果正则表达式匹配成功,则 `test()` 方法返回 `true`,否则返回 `false`。也可以使用 `RegExp` 对象构造函数来创建正则表达式,例如 `new RegExp("world")`,效果与 `/world/` 是一样的。
阅读全文