在JavaScript中,可以使用RegExp
对象的exec()
方法或者String
对象的match()
方法来实现类似于PHP的preg_match_all()
的正则表达式匹配多次出现的功能。
以下是一个示例代码:
const regex = /pattern/g; // 使用 /pattern/g 表示全局匹配
const text = 'example text';
let matches = [];
let match;
while ((match = regex.exec(text)) !== null) {
matches.push(match);
}
console.log(matches);
或者使用String
对象的match()
方法:
const regex = /pattern/g; // 使用 /pattern/g 表示全局匹配
const text = 'example text';
const matches = text.match(regex);
console.log(matches);
这两种方法都可以实现类似于PHP的preg_match_all()
的正则表达式匹配多次出现的功能。
领取专属 10元无门槛券
手把手带您无忧上云