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

📅  最后修改于: 2022-03-11 14:55:42.288000             🧑  作者: Mango

代码示例3
const regex = /([a-z]*)ball/g;
const str = "basketball football baseball";
let result;
while((result = regex.exec(str)) !== null) {
    console.log(result[1]); 
    // => basket
    // => foot
    // => base
}