What is the most brilliant regex you've ever used? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T04:46:34Z http://stackoverflow.com/feeds/question/20448 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/20448/what-is-the-most-brilliant-regex-youve-ever-used 12 What is the most brilliant regex you've ever used? travis 2008-08-21T16:29:24Z 2009-09-30T11:06:33Z <p>I'm constantly amazed by the power of the regex. What I'm looking for here is: </p> <ul> <li>Regexs that are more <em>cleverly</em> badass than <em>ridiculously</em> badass</li> <li>Regex replacements are acceptable as well if you've had some cool usage of them</li> <li>Refactored code to use a regex and make it more efficient</li> <li>Refactored a large regex with a smaller one</li> <li>Humorous regexs, especially if they have been used in production</li> </ul> <p>I think that the most badass regex that I've ever used was that <a href="http://ex-parrot.com/~pdw/Mail-RFC822-Address.html" rel="nofollow"><em>absoludicrous</em> RFC822 email validation regex</a> that I converted to C# and compiled for some form validation (it worked beautifully). It was an example of ridiculousness more than cleverness though.</p> <p>(since this question is very subjective, after a week, I'll mark the highest rated answer as accepted, is that fair?)</p> http://stackoverflow.com/questions/20448/what-is-the-most-brilliant-regex-youve-ever-used/20464#20464 3 Answer by BCS for What is the most brilliant regex you've ever used? BCS 2008-08-21T16:35:27Z 2008-08-21T17:45:35Z <p>No such thing. "Brilliant Regex" is an oxymoron</p> <p>Edit: I'm 94.3% joking on that :)</p> <p>I have an app I'm working on that translate from C# to D. It consists of a several dozen RegExp rules. It's darn near impossible to figure out whats going on without good tools:</p> <pre><code>\s*(((abstract)|(static))\s+)?(((public)|(private))\s+)?((class)|(interface)) ([a-zA-Z_][a-zA-Z0-9_]*)[^{]*({.*})?.* ^\s*((public)|(private))?(\s+((static)|(virtual)))?\s+([a-zA-Z_][a-zA-Z0-9_]*(!\(.*\))?)\s+([a-zA-Z_][a-zA-Z0-9_]*)\s*(~|{) </code></pre> <p>but it would be even worse without RegEx</p> http://stackoverflow.com/questions/20448/what-is-the-most-brilliant-regex-youve-ever-used/20481#20481 3 Answer by Kibbee for What is the most brilliant regex you've ever used? Kibbee 2008-08-21T16:43:15Z 2008-08-21T16:43:15Z <p>@BCS</p> <p>While a Regex can be hard to understand at first glance, it's often better than the alternative of 20 substring/indexof function calls. Often when somebody tries to do something without regex, it ends up being quite rigid, and often misses out on a lot of edge cases because it would have made the code too difficult to write. Fixing a bug, or adding in and extra case that also matches the pattern can often be very difficult when Regex is not being used. </p> http://stackoverflow.com/questions/20448/what-is-the-most-brilliant-regex-youve-ever-used/20491#20491 1 Answer by Dillie-O for What is the most brilliant regex you've ever used? Dillie-O 2008-08-21T16:48:23Z 2008-08-21T16:48:23Z <p>I've used a the grouping feature of Regex to map out "columns" in a log file that doesn't have a space or comma delimited format. I then use the grouping results to suck the data into a DataTable that is bound to a grid for log file viewing/searching/sorting.</p> <p>Does that count?</p> http://stackoverflow.com/questions/20448/what-is-the-most-brilliant-regex-youve-ever-used/20527#20527 0 Answer by travis for What is the most brilliant regex you've ever used? travis 2008-08-21T17:00:57Z 2008-08-21T17:00:57Z <p>@<a href="#20491" rel="nofollow">Dillie-O</a> It'll count when you paste in the regex you used. :-)</p> http://stackoverflow.com/questions/20448/what-is-the-most-brilliant-regex-youve-ever-used/20546#20546 46 Answer by Pat for What is the most brilliant regex you've ever used? Pat 2008-08-21T17:08:11Z 2008-09-10T13:12:56Z <p>This is not something useful, but is surely the most interesting regexp I have come across, A regexp that tests for prime numbers:</p> <pre><code>/^1?$|^(11+?)\1+$/ </code></pre> <p>You can test it in perl by doing</p> <pre><code> $perl -e 'print "Prime\n" if (1 x shift) !~ /^1?$|^(11+?)\1+$/' 19 $Prime $perl -e 'print "Prime\n" if (1 x shift) !~ /^1?$|^(11+?)\1+$/' 20 $ </code></pre> <p>I think it is by Abigail from the perl community.</p> <p>Edit: For the people having hard time believing it works, here is an explanation:</p> <p>In the test example, <strong>(1 x shift)</strong> creates a string of ones whose length is the number we are testing for primeness</p> <p>The regexp actually finds if the number has any divisors other than one or itself => not prime.</p> <p><strong>^1?$</strong> will return true for 1 which is not prime.</p> <p><strong>^(11+?)\1+$</strong> which is more complicated does the following.</p> <p><strong>^(11+?)</strong> means start by trying to see if it can find 11 at the beginning of the string, <strong>\1</strong> means repeated <strong>+</strong> means at least once and matches the string from start to end <strong>^</strong> and <strong>$</strong> => this is a check if the length is divisible by two.</p> <blockquote> <p>ex: 8 (11111111) would match 11 repeated 4 times</p> <p>9 (111111111) would yield 11 repeated 4 times but with a final 1 left at the end, so the string is not matched form beginning to end.</p> </blockquote> <p>The neat part is that when it cannot match,it backtracks and tries to match 111 repeated in the same way => check if divisible by three ... </p> <blockquote> <p>9 (111111111) will be matched with 111 repeated 3 times exactly from start to end.</p> </blockquote> <p>And so forth, if any match is found the number has a divisor and is not prime otherwise the number has no divisors and is prime.</p> <blockquote> <p>A number like 7 would never match. 11,111,1111,11111,111111 leave some unmatched ones at the end and 1111111 is not "repeated at least once", so the regexp never matches -> no divisors -> number is prime</p> </blockquote> http://stackoverflow.com/questions/20448/what-is-the-most-brilliant-regex-youve-ever-used/20672#20672 5 Answer by Akira for What is the most brilliant regex you've ever used? Akira 2008-08-21T18:01:06Z 2008-08-22T02:16:09Z <p>/(bb|[^b]{2})/</p> <p>Edit: It's Shakespeare ;p</p> http://stackoverflow.com/questions/20448/what-is-the-most-brilliant-regex-youve-ever-used/20755#20755 0 Answer by travis for What is the most brilliant regex you've ever used? travis 2008-08-21T18:46:20Z 2008-08-22T03:02:49Z <p>@<a href="#20672" rel="nofollow">Akira</a> isn't that the same as <code>/(..)/</code> ? How was it used?</p> <p>Edit: LOL, that's f'n great!</p> http://stackoverflow.com/questions/20448/what-is-the-most-brilliant-regex-youve-ever-used/21138#21138 1 Answer by Dillie-O for What is the most brilliant regex you've ever used? Dillie-O 2008-08-21T20:45:02Z 2008-08-21T20:45:02Z <p>Well, for an old log for WebCT (now blackboard's) log file, I used:</p> <pre><code>^\[(.*)\]\t\[(.*)\]\t\[(.*)\]\t\[(.*)\]\t(.*)$ </code></pre> <p>nothing too fancy, since they used the [] on occasion</p> <p>I still need to refine it a smidge more, but this one is allowing me to suck data out of my IIS log files:</p> <pre><code>(\S+)\:(\d{4}-\d{2}-\d{2}\s\d{2}:\d{2}:\d{2})\s(\S+)\s(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\s(GET|POST)\s(.*)--\s(\d+)\s-\s(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\s(\S+)\s(\d+)\s(\d+)\s(\d+) </code></pre> <p>If you want to mess with it yourself, check out a little library I created called <a href="http://www.codeplex.com/fotelo" rel="nofollow">fotelo</a>.</p> http://stackoverflow.com/questions/20448/what-is-the-most-brilliant-regex-youve-ever-used/40789#40789 -2 Answer by OysterD for What is the most brilliant regex you've ever used? OysterD 2008-09-02T22:07:06Z 2008-09-02T22:07:06Z <p>@Pat:</p> <p>There's no such thing as a regexp testing for primality. Note that it has (quite) recently been proven that PRIMES is in the P class (thanks to the <a href="http://en.wikipedia.org/wiki/AKS_primality_test" rel="nofollow">AKS</a> algorithm). It is not, however, known to be regular (yet!).</p> <p>Was it a joke?</p> http://stackoverflow.com/questions/20448/what-is-the-most-brilliant-regex-youve-ever-used/44555#44555 2 Answer by Jared Updike for What is the most brilliant regex you've ever used? Jared Updike 2008-09-04T19:25:11Z 2008-09-04T19:25:11Z <p>@OysterD:</p> <p>Regular expression in Perl have extensions that make them <a href="http://en.wikipedia.org/wiki/Regular_expression#Patterns_for_non-regular_languages" rel="nofollow">more powerful</a> than the "regular languages" found in computer science theory classes. Unfortunately they still kept the name.</p> <p>NOTE: I'm not arguing whether primality can be tested with (non-)deterministic finite automata (not possible) or whether this particular Perl regex in fact tests for primality (un-tested by myself), just pointing out that Perl regexes are not restricted to implementations as (N)DFAs so it could in theory happen.</p> <p><a href="http://en.wikipedia.org/wiki/Regular_language" rel="nofollow">http://en.wikipedia.org/wiki/Regular_language</a>:</p> <blockquote> <p>Note that the "regular expression" features provided with many programming languages are augmented with features that make them capable of recognizing languages which are not regular.</p> </blockquote> http://stackoverflow.com/questions/20448/what-is-the-most-brilliant-regex-youve-ever-used/51078#51078 2 Answer by John Meagher for What is the most brilliant regex you've ever used? John Meagher 2008-09-09T01:31:26Z 2008-09-09T01:31:26Z <p>Years ago I wrote a mailing address parser using regular expressions. This was for passing data from a web front end that had the typical "address line 1" and "address line 2" form fields and it had to be converted into "street" "number" "po box" ... fields. </p> <p>It had a list of possible expressions and for each one what the groups were associated with. It went through the list looking for one that matched without missing any of the address. </p> <p>It was a strangely fun coming up with all the options and test cases to try and break it. In the end I learned <em>way</em> more about addresses than I ever wanted to know. The USPS has a good site about <a href="http://pe.usps.gov/text/pub28/PUB28C2.html" rel="nofollow">address formats</a>. Before this I had never even heard of a "star route" address. </p> http://stackoverflow.com/questions/20448/what-is-the-most-brilliant-regex-youve-ever-used/54025#54025 2 Answer by Gorgapor for What is the most brilliant regex you've ever used? Gorgapor 2008-09-10T13:24:45Z 2008-09-10T13:24:45Z <p>Why are we bragging about doing things with regular expressions that are difficult to understand? Sometimes regular expressions are the right tool, but many of these posts are using them as a clever novelty instead of best and most obvious way to solve a problem. This website is supposed to encourage good, readable coding practices.</p> http://stackoverflow.com/questions/20448/what-is-the-most-brilliant-regex-youve-ever-used/124406#124406 3 Answer by davenpcj for What is the most brilliant regex you've ever used? davenpcj 2008-09-23T22:49:26Z 2008-09-23T22:49:26Z <p>I once copied the BNF Syntax off an RFC and made a set of Regexes that "matched" the protocol. (?Expression) for a non-grouping group did wonders. The regex did all the parsing for me.</p> <p>The exact code is on another machine, but it was something like:</p> <pre><code>$DIGIT = "[0-9]"; $HTTP = "$request"; $request = "(?$httpversion $operand $URI $requestheader)"; $httpversion = "HTTP/$DIGIT\.$DIGIT"; $operand = "(GET|POST)"; $URI = "($protocol://$optionalcreds$hostnameip$optionalport(/$absolutepath))" ## etc $packet = read(SOCK); $packet =~ /$HTTP/; </code></pre> <p>That example is for HTTP, RFC 2616, using the BNF from <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec2.html#sec2.1" rel="nofollow">Syntax</a> and <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3" rel="nofollow">Protocol</a> sections of the document. Some BNFs are written so that you can just cut and paste them into a regex.</p> http://stackoverflow.com/questions/20448/what-is-the-most-brilliant-regex-youve-ever-used/286313#286313 1 Answer by morkk for What is the most brilliant regex you've ever used? morkk 2008-11-13T05:16:30Z 2008-11-13T05:16:30Z <p>ObQuote: </p> <p>Some people, when confronted with a problem, think "I know, I'll use regular expressions." Now they have two problems. — Jamie Zawinski</p> http://stackoverflow.com/questions/20448/what-is-the-most-brilliant-regex-youve-ever-used/1428619#1428619 0 Answer by JuanZe for What is the most brilliant regex you've ever used? JuanZe 2009-09-15T17:43:41Z 2009-09-15T17:43:41Z <p>A great post about useful regular expressions: <strong><a href="http://net.tutsplus.com/tutorials/other/8-regular-expressions-you-should-know/" rel="nofollow">"8 Regular Expressions You Should Know"</a></strong> </p> <p><a href="http://net.tutsplus.com/tutorials/other/8-regular-expressions-you-should-know/" rel="nofollow">http://net.tutsplus.com/tutorials/other/8-regular-expressions-you-should-know/</a></p> <p>(includes matching e-mail, url, ip address, html tag, etc)</p> http://stackoverflow.com/questions/20448/what-is-the-most-brilliant-regex-youve-ever-used/1428630#1428630 0 Answer by Philippe Leybaert for What is the most brilliant regex you've ever used? Philippe Leybaert 2009-09-15T17:44:53Z 2009-09-15T18:23:01Z <p>A regex to check for strong passwords:</p> <p>This one will validate a password with a length of 5 to 10 alphanumerical characters, with at least one upper case, one lower case and one digit:</p> <pre><code>^[a-zA-Z0-9]{5,10}(?&lt;=[A-Z].*)(?&lt;=[a-z].*)(?&lt;=[0-9].*)$ </code></pre> <p>It doesn't work in all regex implementations because it relies on variable-length look-behinds.</p> <p>As MizardX points out, using look-ahead may work for in most cases:</p> <pre><code>^(?=.*[A-Z])(?=.*[a-z])(?=.*[0-9])[a-zA-Z0-9]{5,10}$ </code></pre> http://stackoverflow.com/questions/20448/what-is-the-most-brilliant-regex-youve-ever-used/1497453#1497453 0 Answer by RamyenHead for What is the most brilliant regex you've ever used? RamyenHead 2009-09-30T11:06:33Z 2009-09-30T11:06:33Z <p>I've seen a regular expression matching multiples of 7. But I can't find the link. An overkill? Yes. In fact you can match multiples of any number. </p> <p>If you try to find out whether or not 2048582930401385720939528 is a multiple of 7 with pencil and paper, you're being a finite automaton. "finite" because the number of stuffs you must keep track of at any moment of during your calculation doesn't grow, which is why you can check if the number 6783...84 (a 100 meter long number written on a road) is divisible by 7 by just walking along the road and keeping calculating. And there is a theorem saying that anything recognizable by a finite automaton is also recognizable by a regular expression. A proof is in the book "Theory of Codes", available online.</p>