admin管理员组文章数量:1344231
I have this regex which looks for %{any charactering including new lines}%
:
/[%][{]\s*((.|\n|\r)*)\s*[}][%]/gm
If I test the regex on a string like "%{hey}%", the regex returns "hey" as a match.
However, if I give it "%{hey}%%{there}%", it doesn't match both "hey" and "there" seperately, it has one match—"hey}%%{there".
How do I make it ungreedy to so it returns a match for each %{}%?
I have this regex which looks for %{any charactering including new lines}%
:
/[%][{]\s*((.|\n|\r)*)\s*[}][%]/gm
If I test the regex on a string like "%{hey}%", the regex returns "hey" as a match.
However, if I give it "%{hey}%%{there}%", it doesn't match both "hey" and "there" seperately, it has one match—"hey}%%{there".
How do I make it ungreedy to so it returns a match for each %{}%?
Share Improve this question asked Feb 15, 2010 at 1:40 JamesBrownIsDeadJamesBrownIsDead 9352 gold badges9 silver badges15 bronze badges 1- As I always mention on Regular expression questions, check out Regexr, a cool Flash Based Regex tool, by gSkinner Link: gskinner./RegExr There is also the AS3 Regular Expression tester: idsklijnsma.nl/regexps – Moshe Commented Feb 15, 2010 at 1:49
3 Answers
Reset to default 8Add a question mark after the star.
/[%][{]\s*((.|\n|\r)*?)\s*[}][%]/gm
Firstly, to make a wildcard match non-greedy, just append it with ?
(so *?
instead of *
and +?
instead of +
).
Secondly, your pattern can be simplified in a number of ways.
/%\{\s*([\s\S]*?)\s*\}%/gm
There's no need to put a single character in square brackets.
Lastly the expression in the middle you want to capture, you'll note I put [\s\S]
. That es from Matching newlines in JavaScript as a replacement for the DOTALL
behaviour.
Shorter and faster working:
/%\{([^}]*)\}%/gm
本文标签: JavaScript Regex Make ungreedyStack Overflow
版权声明:本文标题:JavaScript Regex: Make ungreedy - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743719971a2527400.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论