📜  exec reges - Javascript 代码示例

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

代码示例1
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
}