Hidden Features of RegEx - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T23:03:21Z http://stackoverflow.com/feeds/question/868181 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/868181/hidden-features-of-regex 4 Hidden Features of RegEx slf 2009-05-15T11:38:09Z 2009-08-13T02:02:01Z <p>Continuing the tradition of '<a href="http://stackoverflow.com/questions/9033/hidden-features-of-c#">the</a> <a href="http://stackoverflow.com/questions/75538/hidden-features-of-c%2B%2B">great</a> <a href="http://stackoverflow.com/questions/132241/hidden-features-of-c">hidden</a> <a href="http://stackoverflow.com/questions/211616/hidden-features-of-objective-c">features</a> <a href="http://stackoverflow.com/questions/15496/hidden-features-of-java">threads</a> <a href="http://stackoverflow.com/questions/63998/hidden-features-of-ruby">seen</a> <a href="http://stackoverflow.com/questions/101268/hidden-features-of-python">here</a>'</p> <p>Show us your best / coolest / craziest / "usefulest" RegEx</p> <p>EDIT: It was foolish of me to not be more specific. My intent was to focus on the lesser known or esoteric features of RegEx implementations in any language. For example, .NET supports a variant of named groups like this: <code>(?&lt;first&gt;group)(?'second'group)</code> so that when doing a search and replace you can reference the named group like so: <code>${name}</code></p> http://stackoverflow.com/questions/868181/hidden-features-of-regex/868221#868221 1 Answer by Moayad Mardini for Hidden Features of RegEx Moayad Mardini 2009-05-15T11:46:38Z 2009-05-15T11:46:38Z <p>I won't try, I can't write anything more useful than this : <a href="http://www.smashingmagazine.com/2009/05/06/introduction-to-advanced-regular-expressions/" rel="nofollow">Crucial Concepts Behind Advanced Regular Expressions</a>.</p> http://stackoverflow.com/questions/868181/hidden-features-of-regex/868231#868231 2 Answer by Rashmi Pandit for Hidden Features of RegEx Rashmi Pandit 2009-05-15T11:49:50Z 2009-05-21T05:39:17Z <p>Backreference construct For eg. to find doubled word characters use </p> <p><code>(?&lt;char&gt;\w)\k&lt;char&gt;</code></p> <p>Here wherever <code>&lt;char&gt;</code> occurs in regex, it matches \w</p> <p>Backreferencing uses named groups to allow you to search for other instances of characters that match a wildcard. Backreferences provide a convenient way to find repeating groups of characters. They can be thought of as a shorthand instruction to match the same string again.</p> <p>For example, the regular expression <code>(?&lt;char&gt;\w)\k&lt;char&gt;</code>, using named groups and backreferencing, searches for adjacent paired characters. When applied to the string "I'll have a small coffee," it finds matches in the words "I'll", "small", and "coffee". The metacharacter \w finds any single-word character. The grouping construct <code>(?&lt;char&gt;)</code> encloses the metacharacter to force the regular expression engine to remember a subexpression match (which, in this case, will be any single character) and save it under the name "char". The backreference construct <code>\k&lt;char&gt;</code> causes the engine to compare the current character to the previously matched character stored under "char". The entire regular expression successfully finds a match wherever a single character is the same as the preceding character.</p> <p><strong>Added:</strong></p> <p>An eg of usage of backreference would be to check if a particular tag is xml. Here it is mandatory that the start tag and end tag should match. Hence backreference is handy. Check out <a href="http://stackoverflow.com/questions/891223/c-better-way-to-detect-xml/891401#891401">my example on expression to match xml tag</a>.</p> http://stackoverflow.com/questions/868181/hidden-features-of-regex/869084#869084 2 Answer by Daniel Martin for Hidden Features of RegEx Daniel Martin 2009-05-15T14:36:20Z 2009-05-15T14:36:20Z <p><a href="http://www.regular-expressions.info/atomic.html" rel="nofollow">Atomic grouping</a>. (And, if your engine has it, possessive quantifiers, which are a notational convenience for the commonest use case of Atomic grouping)</p> <p>This is very often the answer to making your regular expressions fast. Anyone who's struggled with regular expressions knows how easy it is to accidentally write a regular expression that takes forever on long input. As a simple example, this regex:</p> <pre><code>([+\w-]+)@foo.com </code></pre> <p>Takes time proportional to <em>n</em><sup>2</sup> to run against a string of <em>n</em> "x" characters. (with most engines; perl does some fancy optimization) It's easy to construct a regular expression that takes O(<em>n</em><sup>3</sup>), O(<em>n</em><sup>4</sup>), etc. time when failing to match, and even ones that take O(2<sup><em>n</em></sup>) time. Often, the way out of this is to signal to the regular expression engine that it shouldn't backtrack through certain constructs. That's where atomic grouping comes in.</p> <p>This regular expression matches exactly the same things as the other one, but only takes O(<em>n</em>) time:</p> <pre><code>((?&gt;[+\w-]+))@foo.com </code></pre> <p>The atomic group construct (?> ) tells the regular expression engine to not backtrack back inside the parentheses if subsequent characters fail to match. Instead, the entire expression should fail to match. This is what keeps the behavior linear.</p> <p>You do have to be a little bit careful with atomic groups - sometimes you really do want backtracking - but it's a nice thing to start thinking of whenever you notice performance issues in your regular expressions.</p> <p>(<em>It's a shame Python doesn't support this feature - <a href="http://bugs.python.org/issue3825" rel="nofollow">yet</a></em>)</p> http://stackoverflow.com/questions/868181/hidden-features-of-regex/1269657#1269657 2 Answer by Bruce McGee for Hidden Features of RegEx Bruce McGee 2009-08-13T02:02:01Z 2009-08-13T02:02:01Z <p>Isn't everything in RegEx a "hidden" feature? How does the joke go?</p> <blockquote> <p>I had a problem that I tried to solve with regular expressions. Now I have two problems.</p> </blockquote> <p>:)</p>