如何获得正则表达式匹配的所有组?
var str = "adam peter james sylvester sarah";
var regex = /what should my regex be t capture all names that has the letter a in them/
var match = regex.exec( text );
console.log(match)
我在这里想要的是每个名称中都包含字母 a... 我希望能够最好同时捕获多个名称。
这可能吗?