Why can't Regular Expressions use keywords instead of characters? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T21:35:44Z http://stackoverflow.com/feeds/question/629573 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/629573/why-cant-regular-expressions-use-keywords-instead-of-characters 7 Why can't Regular Expressions use keywords instead of characters? Jeremy Rudd 2009-03-10T10:19:25Z 2009-04-03T21:45:17Z <p>Okay, I barely understand RegEx basics, but why couldn't they design it to use keywords (like SQL) instead of some cryptic wildcard characters and symbols?</p> <p>Is it for performance since the RegEx is interpreted/parsed at runtime? (not compiled)</p> <p>Or maybe for speed of writing? Considering that when you learn some "simple" character combinations it becomes easier to type 1 character instead of a keyword?</p> http://stackoverflow.com/questions/629573/why-cant-regular-expressions-use-keywords-instead-of-characters/629575#629575 4 Answer by Colin Pickard for Why can't Regular Expressions use keywords instead of characters? Colin Pickard 2009-03-10T10:20:15Z 2009-03-10T10:35:19Z <p>It's Perl's fault...!</p> <p>Actually, more specifically, Regular Expressions come from early Unix development, and concise syntax was a lot more highly valued then. Storage, processing time, physical terminals, etc were all very limited, rather unlike today.</p> <p><a href="http://en.wikipedia.org/wiki/Regular%5Fexpression#History" rel="nofollow">The history of Regular Expressions on Wikipedia</a> explains more.</p> <p>There are alternatives to Regex, but I'm not sure any have really caught on.</p> <p>EDIT: Corrected by John Saunders: Regular Expressions were <em>popularised</em> by Unix, but first implemented by the <a href="http://en.wikipedia.org/wiki/QED%5F%28text%5Feditor%29" rel="nofollow">QED</a> editor. The same design constraints applied, even more so, to earlier systems.</p> http://stackoverflow.com/questions/629573/why-cant-regular-expressions-use-keywords-instead-of-characters/629586#629586 1 Answer by cletus for Why can't Regular Expressions use keywords instead of characters? cletus 2009-03-10T10:25:33Z 2009-03-10T10:25:33Z <p>Because the idea of regular expressions--like many things that originate from UNIX--is that they are terse, favouring brevity over readability. This is actually a good thing. I've ended up writing regular expressions (against my better judgement) that are 15 lines long. If that had a verbose syntax it wouldn't be a regex, it'd be a program.</p> http://stackoverflow.com/questions/629573/why-cant-regular-expressions-use-keywords-instead-of-characters/629591#629591 1 Answer by j_random_hacker for Why can't Regular Expressions use keywords instead of characters? j_random_hacker 2009-03-10T10:26:59Z 2009-03-10T10:26:59Z <p>It's actually pretty easy to implement a "wordier" form of regex -- please see my answer <a href="http://stackoverflow.com/questions/500839/regular-expression-compiler/500945#500945">here</a>. In a nutshell: write a handful of functions that return regex strings (and take parameters if necessary).</p> http://stackoverflow.com/questions/629573/why-cant-regular-expressions-use-keywords-instead-of-characters/629592#629592 5 Answer by Yossarian for Why can't Regular Expressions use keywords instead of characters? Yossarian 2009-03-10T10:27:46Z 2009-03-10T10:27:46Z <p>Because it corresponds to formal language theory and it's mathematic notation.</p> http://stackoverflow.com/questions/629573/why-cant-regular-expressions-use-keywords-instead-of-characters/629593#629593 3 Answer by John Saunders for Why can't Regular Expressions use keywords instead of characters? John Saunders 2009-03-10T10:27:57Z 2009-03-10T10:27:57Z <p>Actually, no, the world did not begin with Unix. If you read the Wikipedia article, you'll see that</p> <blockquote> <p>In the 1950s, mathematician Stephen Cole Kleene described these models using his mathematical notation called regular sets. The SNOBOL language was an early implementation of pattern matching, but not identical to regular expressions. Ken Thompson built Kleene's notation into the editor QED as a means to match patterns in text files. He later added this capability to the Unix editor ed, which eventually led to the popular search tool grep's use of regular expressions</p> </blockquote> http://stackoverflow.com/questions/629573/why-cant-regular-expressions-use-keywords-instead-of-characters/629596#629596 2 Answer by Yuval F for Why can't Regular Expressions use keywords instead of characters? Yuval F 2009-03-10T10:29:22Z 2009-03-10T10:39:39Z <p>This is much earlier than PERL. <a href="http://en.wikipedia.org/wiki/Regular%5Fexpression#History" rel="nofollow">The Wikipedia entry on Regular Expressions</a> attributes the first implementations of regular expressions to Ken Thompson of UNIX fame, who implemented them in the QED and then the <a href="http://en.wikipedia.org/wiki/Ed%5F%28text%5Feditor%29" rel="nofollow">ed</a> editor. I guess that the commands had short names for performance reasons, but much before being client-side. <a href="http://regex.info/" rel="nofollow">Mastering Regular Expressions</a> is a great book about regular expressions, which offers the option to annotate a regular expression (with the /x flag) to make it easier to read and understand. </p> http://stackoverflow.com/questions/629573/why-cant-regular-expressions-use-keywords-instead-of-characters/629597#629597 9 Answer by Ferdinand Beyer for Why can't Regular Expressions use keywords instead of characters? Ferdinand Beyer 2009-03-10T10:30:05Z 2009-03-10T10:35:19Z <p>Regular expressions have a mathematical (actually, language theory) background and are coded somewhat like a <strong>mathematical formula</strong>. You can define them by a set of rules, for example</p> <ul> <li>every character is a regular expression, representing itself</li> <li>if <code>a</code> and <code>b</code> are regular expressions, then <code>a?</code>, <code>a|b</code> and <code>ab</code> are regular expressions, too</li> <li>...</li> </ul> <p>Using a keyword-based language would be a great burden for simple regular expressions. Most of the time, you will just use a simple text string as search pattern:</p> <pre><code>grep -R 'main' *.c </code></pre> <p>Or maybe very simple patterns:</p> <pre><code>grep -c ':-[)(]' seidl.txt </code></pre> <p>Once you get used to regular expressions, this syntax is very clear and precise. In more complicated situations you will probably use something else since a large regular expression is obviously hard to read.</p> http://stackoverflow.com/questions/629573/why-cant-regular-expressions-use-keywords-instead-of-characters/629602#629602 27 Answer by Jeff Atwood for Why can't Regular Expressions use keywords instead of characters? Jeff Atwood 2009-03-10T10:32:26Z 2009-03-10T12:19:46Z <p>You really want <em>this</em>?</p> <pre><code>Pattern findGamesPattern = Pattern.With.Literal(@"&lt;div") .WhiteSpace.Repeat.ZeroOrMore .Literal(@"class=""game""").WhiteSpace.Repeat.ZeroOrMore.Literal(@"id=""") .NamedGroup("gameId", Pattern.With.Digit.Repeat.OneOrMore) .Literal(@"-game""") .NamedGroup("content", Pattern.With.Anything.Repeat.Lazy.ZeroOrMore) .Literal(@"&lt;!--gameStatus") .WhiteSpace.Repeat.ZeroOrMore.Literal("=").WhiteSpace.Repeat.ZeroOrMore .NamedGroup("gameState", Pattern.With.Digit.Repeat.OneOrMore) .Literal("--&gt;"); </code></pre> <p>Ok, but <a href="http://www.codinghorror.com/blog/archives/000989.html" rel="nofollow">it's your funeral</a>, man.</p> <p>Download the library that does this here:<br /> <a href="http://flimflan.com/blog/ReadableRegularExpressions.aspx" rel="nofollow">http://flimflan.com/blog/ReadableRegularExpressions.aspx</a> </p> http://stackoverflow.com/questions/629573/why-cant-regular-expressions-use-keywords-instead-of-characters/629611#629611 6 Answer by wwosik for Why can't Regular Expressions use keywords instead of characters? wwosik 2009-03-10T10:34:54Z 2009-03-10T10:45:31Z <p>Well, if you had keywords, how would you easily differentiate them from actually matched text? How would you handle whitespace?</p> <p>Source text Company: A Dept.: B </p> <p>Standard regex:</p> <pre><code>Company:\s+(.+)\s+Dept.:\s+(.+) </code></pre> <p>Or even:</p> <pre><code>Company: (.+) Dept. (.+) </code></pre> <p>Keyword regex (trying really hard not get a strawman...)</p> <pre><code>"Company:" whitespace.oneplus group(any.oneplus) whitespace.oneplus "Dept.:" whitespace.oneplus group(any.oneplus) </code></pre> <p>Or simplified:</p> <pre><code>"Company:" space group(any.oneplus) space "Dept.:" space group(any.oneplus) </code></pre> <p>No, it's probably not better.</p> http://stackoverflow.com/questions/629573/why-cant-regular-expressions-use-keywords-instead-of-characters/629711#629711 1 Answer by divo for Why can't Regular Expressions use keywords instead of characters? divo 2009-03-10T11:16:11Z 2009-03-10T11:16:11Z <p>I don't think keywords would give any benefit. Regular expressions as such are complex but also very powerful.</p> <p>What I think is more confusing is that every supporting library invents its own syntax instead of using (or extending) the classic Perl regex (e.g. \1, $1, {1}, ... for replacements and many more examples).</p> http://stackoverflow.com/questions/629573/why-cant-regular-expressions-use-keywords-instead-of-characters/629811#629811 1 Answer by Toby Allen for Why can't Regular Expressions use keywords instead of characters? Toby Allen 2009-03-10T11:51:43Z 2009-03-10T11:51:43Z <p>I know its answering your question the wrong way around, but <a href="http://www.regexbuddy.com/" rel="nofollow">RegExBuddy</a> has a feature that explains your regexpression in plain english. This might make it a bit easier to learn. </p> http://stackoverflow.com/questions/629573/why-cant-regular-expressions-use-keywords-instead-of-characters/648224#648224 6 Answer by Chris Dolan for Why can't Regular Expressions use keywords instead of characters? Chris Dolan 2009-03-15T17:52:57Z 2009-03-15T17:52:57Z <p>Perl 6 is taking a pretty revolutionary step forward in regex readability. Consider an address of the form: 100 E Main St Springfield MA 01234</p> <p>Here's a moderately-readable Perl 5 compatible regex to parse that (many corner cases not handled):</p> <pre><code> m/ ([1-9]\d*)\s+ ((?:N|S|E|W)\s+)? (\w+(?:\s+\w+)*)\s+ (ave|ln|st|rd)\s+ ([:alpha:]+(?:\s+[:alpha:]+)*)\s+ ([A-Z]{2})\s+ (\d{5}(?:-\d{4})?) /ix; </code></pre> <p>This Perl 6 regex has the same behavior:</p> <pre><code>grammar USMailAddress { rule TOP { &lt;addr&gt; &lt;city&gt; &lt;state&gt; &lt;zip&gt; } rule addr { &lt;[1..9]&gt;\d* &lt;direction&gt;? &lt;streetname&gt; &lt;streettype&gt; } token direction { N | S | E | W } token streetname { \w+ [ \s+ \w+ ]* } token streettype {:i ave | ln | rd | st } token city { &lt;alpha&gt; [ \s+ &lt;alpha&gt; ]* } token state { &lt;[A..Z]&gt;**{2} } token zip { \d**{5} [ - \d**{4} ]? } } </code></pre> <p>A Perl 6 grammar is a class, and the tokens are all invokable methods. Use it like this:</p> <pre><code>if $addr ~~ m/^&lt;USMailAddress::TOP&gt;$/ { say "$&lt;city&gt;, $&lt;state&gt;"; } </code></pre> <p>This example comes from a <a href="http://chrisdolan.net/frozenperl/rakudo-grammars.html" rel="nofollow">talk I presented</a> at the <a href="http://www.frozen-perl.org/mpw2009/" rel="nofollow">Frozen Perl 2009</a> workshop. The Rakudo implementation of Perl 6 is complete enough that this example works today.</p> http://stackoverflow.com/questions/629573/why-cant-regular-expressions-use-keywords-instead-of-characters/648274#648274 1 Answer by gpojd for Why can't Regular Expressions use keywords instead of characters? gpojd 2009-03-15T18:20:11Z 2009-03-15T18:20:11Z <p>If the language you are using supports <a href="http://www.regular-expressions.info/posixbrackets.html" rel="nofollow">Posix regexes</a>, you can use them. </p> <p>An example: </p> <pre><code>\d </code></pre> <p>would be the same as </p> <pre><code>[:digit:] </code></pre> <p>The bracket notation is much clearer on what it is matching. I would still learn the "cryptic wildcard characters and symbols, since you will still see them in other people's code and need to understand them. </p> <p>There are more examples in the <a href="http://www.regular-expressions.info/posixbrackets.html" rel="nofollow">table on regular-expressions.info's page</a>. </p>