Regex greedy issue - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T20:36:24Z http://stackoverflow.com/feeds/question/210080 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/210080/regex-greedy-issue 1 Regex greedy issue Matt P 2008-10-16T20:07:50Z 2009-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#210102 8 Answer by Owen for Regex greedy issue Owen 2008-10-16T20:13:44Z 2008-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#210108 1 Answer by chills42 for Regex greedy issue chills42 2008-10-16T20:14:50Z 2008-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#210114 1 Answer by Keith Twombley for Regex greedy issue Keith Twombley 2008-10-16T20:15:56Z 2008-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#210182 1 Answer by Glenn for Regex greedy issue Glenn 2008-10-16T20:32:52Z 2008-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#210484 1 Answer by Andy Lester for Regex greedy issue Andy Lester 2008-10-16T22:08:42Z 2008-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#738841 0 Answer by TH3 for Regex greedy issue TH3 2009-04-10T20:57:30Z 2009-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>