JavaScript 中的 RegExp 对象用于支持正则表达式。本文将详细介绍 RegExp 对象的方法及其用法。
1. RegExp.prototype.test()
test() 方法执行一个检索,用来查看正则表达式与指定的字符串是否匹配。返回 true 或 false。
const regex = /hello/i;
console.log(regex.test('Hello World')); // true
console.log(regex.test('Hi there')); // false
2000/1/9大约 3 分钟