admin管理员组文章数量:1350011
I have been stuck on this silly issue for hours now. I know it seems stupid but I really don't know what I am missing. Any help would be appreciated.
Here's my issue:
var objReg = /touch/g;
var str = "abc touch def touch";
var arr = objReg.exec(str);
Here I expect the array arr
to contain 2 elements but it only contains the 1st element even though I made sure to put the g
modifier.
Can anyone guide me what is to be done here?
Debug: As shown in the image below, the array has just 1 element(index=0)
I have been stuck on this silly issue for hours now. I know it seems stupid but I really don't know what I am missing. Any help would be appreciated.
Here's my issue:
var objReg = /touch/g;
var str = "abc touch def touch";
var arr = objReg.exec(str);
Here I expect the array arr
to contain 2 elements but it only contains the 1st element even though I made sure to put the g
modifier.
Can anyone guide me what is to be done here?
Debug: As shown in the image below, the array has just 1 element(index=0)
Share Improve this question edited Nov 1, 2017 at 17:41 Scott Marcus 65.9k6 gold badges53 silver badges80 bronze badges asked Nov 1, 2017 at 17:32 ManJoeyManJoey 2133 silver badges7 bronze badges 1-
2
You have to repeat
RegExp.exec
until the returned value isnull
. Alternatively, you can usestr.match(re)
, which returns just the array of matches. – Marko Gresak Commented Nov 1, 2017 at 17:36
2 Answers
Reset to default 7To get the effect you want, you need to do the matching with String.prototype.match()
:
var arr = str.match(objReg);
The RegExp .exec()
function does not behave the same way with regards to the g
flag. The flag does do something with .exec()
but not what .match()
does.
The g
modifier causes the regex object to maintain state. It tracks the index after the last match. If you wanted to use .exec()
, you can use a loop, and it will automatically start searching the string at the appropriate point.
var objReg = /touch/g;
var str = "abc touch def touch";
var match = null;
var arr = [];
console.log(objReg.lastIndex);
while ((match = objReg.exec(str))) {
arr.push(match[0]);
console.log(objReg.lastIndex);
}
console.log(objReg.lastIndex);
console.log(arr);
本文标签: regexJavaScript RegExpg modifier not workingStack Overflow
版权声明:本文标题:regex - JavaScript RegExp - g modifier not working - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743872864a2553792.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论