我正在尝试获得显示多个匹配项的结果..但此正则表达式只显示一个。
var regexPattern = /(^.+\/)/g;
var string2Test = 'this/should/have/several';
var myMatches = string2Test.match(regexPattern);
console.log(myMatches);
它应该与下面的三个不匹配吗?
this/
this/should/
this/should/have/
我一直在这里测试它。 https://regex101.com/r/nD7nP6/36