📌  相关文章
📜  正则表达式必须完全匹配 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:58.727000             🧑  作者: Mango

代码示例1
var str = 'the first 3 letters of the alphabet are abc. not abc123';
var pat = /\b(abc)\b/g;
console.log(str.match(pat)); // ["abc"]