Regex greedy issue - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T20:36:24Zhttp://stackoverflow.com/feeds/question/210080http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/210080/regex-greedy-issue1Regex greedy issueMatt P2008-10-16T20:07:50Z2009-04-10T20:57:30Z
<p>I'm sure this one is easy but I've tried a ton of variations and still cant match what I need. The thing is being too greedy and I cant get it to stop being greedy.</p>
<p>Given the text:</p>
<pre><code>test=this=that=more text follows
</code></pre>
<p>I want to just select:</p>
<pre><code>test=
</code></pre>
<p>I've tried the following regex</p>
<pre><code>(\S+)=(\S.*)
(\S+)?=
[^=]{1}
...
</code></pre>
<p>Thanks all.</p>
http://stackoverflow.com/questions/210080/regex-greedy-issue/210102#2101028Answer by Owen for Regex greedy issueOwen2008-10-16T20:13:44Z2008-10-16T21:33:41Z<p>here:</p>
<pre><code>// matches "test=, test"
(\S+?)=
or
// matches "test=, test" too
(\S[^=]+)=
</code></pre>
<p>you should consider using the second version over the first. given your string <code>"test=this=that=more text follows"</code>, version 1 will match <code>test=this=that=</code> then continue parsing to the end of the string. it will then backtrack, and find <code>test=this=</code>, continue to backtrack, and find <code>test=</code>, continue to backtrack, and settle on <code>test=</code> as it's final answer.</p>
<p>version 2 will match <code>test=</code> then stop. you can see the efficiency gains in larger searches like multi-line or whole document matches.</p>
http://stackoverflow.com/questions/210080/regex-greedy-issue/210108#2101081Answer by chills42 for Regex greedy issuechills422008-10-16T20:14:50Z2008-10-16T20:14:50Z<p>You should be able to use this:</p>
<pre><code>(\S+?)=(\S.*)
</code></pre>
http://stackoverflow.com/questions/210080/regex-greedy-issue/210114#2101141Answer by Keith Twombley for Regex greedy issueKeith Twombley2008-10-16T20:15:56Z2008-10-16T20:15:56Z<p>You probably want something like</p>
<p>^(\S+?=)</p>
<p>The caret ^ anchors the regex to the beginning of the string. The ? after the + makes the + non-greedy.</p>
http://stackoverflow.com/questions/210080/regex-greedy-issue/210182#2101821Answer by Glenn for Regex greedy issueGlenn2008-10-16T20:32:52Z2008-10-16T20:32:52Z<p>You might be looking for <a href="http://blog.stevenlevithan.com/archives/greedy-lazy-performance" rel="nofollow">lazy quantifiers</a> *?, +?, ??, and {n, n}?</p>
http://stackoverflow.com/questions/210080/regex-greedy-issue/210484#2104841Answer by Andy Lester for Regex greedy issueAndy Lester2008-10-16T22:08:42Z2008-10-16T22:08:42Z<p>Lazy quantifiers work, but they also can be a performance hit because of backtracking.</p>
<p>Consider that what you really want is "a bunch of non-equals, an equals, and a bunch more non-equals."</p>
<pre><code>([^=]+)=([^=]+)
</code></pre>
<p>Your examples of <code>[^=]{1}</code> only matches a single non-equals character.</p>
http://stackoverflow.com/questions/210080/regex-greedy-issue/738841#7388410Answer by TH3 for Regex greedy issueTH32009-04-10T20:57:30Z2009-04-10T20:57:30Z<p>if you want only "text=", I think that a simply:</p>
<pre><code>^(\w+=)
</code></pre>
<p>should be fine if you are shure about that the string "text=" will always start the line.</p>
<p>the real problem is when the string is like this:</p>
<blockquote>
<p>this=that= more test= text follows</p>
</blockquote>
<p>if you use the regex above the result is "this=" and if you modify the above with the reapeater qualifiers at the end, like this:</p>
<pre><code>^(\w+=)*
</code></pre>
<p>you find a tremendous "this=that=", so I could only imagine the trivial: </p>
<pre><code>[th\w+=]*test=
</code></pre>
<p>Bye.</p>