BNF to Regex - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T12:58:01Z http://stackoverflow.com/feeds/question/463557 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/463557/bnf-to-regex 0 BNF to Regex Adam Tegen 2009-01-20T23:35:31Z 2009-01-21T01:45:44Z <p>Is there any way to convert the following BNF into a .Net regex? (I'm not stuck on the BNF, but I thought it might be the best way to explain what I was trying to do)</p> <pre><code>&lt;field&gt; ::= "&lt;&lt;" &lt;fieldname&gt; &lt;options&gt; "&gt;&gt;" &lt;options&gt; ::= "" | "(" &lt;option&gt; ")" &lt;option&gt; ::= "" | &lt;option&gt; &lt;non-paren&gt; | &lt;option&gt; &lt;escaped-character&gt; &lt;escaped-character&gt; ::= "\\" | "\)" &lt;non-paren&gt; ::= any character but paren &lt;fieldname&gt; ::= any string that doesn't contain "(" or "&gt;&gt;" </code></pre> <p>I'm close, but I can't figure out how to deal with escaping "\" and ")". This captures the fieldname and option in named groups.</p> <pre><code>&lt;&lt;(?&lt;fieldname&gt;.\*?)(\((?&lt;option&gt;.*?)\))?&gt;&gt; </code></pre> <p><hr /></p> <p><strong>Edit</strong></p> <p>It turns out that I was rustier at BNFs than I thought.</p> <p>What I was trying to get at is that parens are special characters. Inside the "option" section, they must be escaped by a slash. (And slashes must also be escaped).</p> http://stackoverflow.com/questions/463557/bnf-to-regex/463601#463601 0 Answer by Joe for BNF to Regex Joe 2009-01-20T23:57:45Z 2009-01-20T23:57:45Z <p>I've been pondering an answer, and sort of hoping someone would jump me so I could stop. :)</p> <p>The recursive nature of a BNF is usually a good opening indicator that if your problem maps well to a BNF, it doesn't map well to a RegExp.</p> <p>I have to admit, I'm not sure I can even figure out your BNF. For instance: x ::= &lt;&lt; Boo ( abc321 ) >></p> <p>Would suggest your 'option' pairs are c3, b2, and a1. This assumes a char is a valid 'option' - you didn't define any valid terminal value for option that wasn't the empty string. Is that really the intent?</p> <p>Assuming you did not want to be recursive... Dealing with escaping and everything else... You may just be better off writing code. This looks a lot easier to walk through the string and deal with than anything else. The feel of what you want suggests you don't need any look-ahead or look-back logic.</p> http://stackoverflow.com/questions/463557/bnf-to-regex/463621#463621 4 Answer by MizardX for BNF to Regex MizardX 2009-01-21T00:02:35Z 2009-01-21T01:45:44Z <p>BNF is used to describe context-free languages, which regex can't normally describe. What separates context-free languages and regex is that context-free langauges can have recursion on both sides at the same time. A classic example is the balanced parenthesis problem.</p> <pre><code>paren = paren paren | '(' paren ')' &lt;-- there are characters on both sides of the recursion | '' </code></pre> <p>In your case, you don't use any double-sided recursion, so it reduces to a regular language.</p> <pre><code>fieldname = /(?:&gt;?[^(&gt;])+/ //No double &gt;, but single ones are ok. option = /(?:[^()\\]|\\.)*/ //No parens, unless preceeded by \ pattern = /&lt;&lt;(?&lt;fieldname&gt; )(?:\((?&lt;option&gt; )\))?&gt;&gt;/ </code></pre> <p>Putting it together:</p> <pre><code>pattern = /&lt;&lt;(?&lt;fieldname&gt;(?:&gt;?[^(&gt;])+)(?:\((?&lt;option&gt;(?:[^()\\]|\\.)*)\))?&gt;&gt;/ </code></pre> <p>Some border cases:</p> <pre><code>&lt;&lt;f&gt;oo(bar&gt;&gt;)&gt;&gt; --&gt; ('f&gt;oo', 'bar&gt;&gt;') &lt;&lt;foo(bar\))&gt;&gt; --&gt; ('foo', 'bar\)') &lt;&lt;foo(bar\\)&gt;&gt; --&gt; ('foo', 'bar\\') &lt;&lt;foo\(bar)&gt;&gt; --&gt; ('foo\', 'bar') </code></pre> <p><hr /></p> <p><strong>EDIT:</strong></p> <p>If you want any extra parenthesis characters (and back-slashes) to have to be escaped inside <code>&lt;&lt;</code> and <code>&gt;&gt;</code>, you could do something like this:</p> <pre><code>fieldname = /(?:&lt;?[^()\\&lt;]|&lt;?\\[()\\])+/ options = /(?:[^()\\]|\\[()\\])*/ pattern = /&lt;&lt;(?&lt;fieldname&gt; )(?:\((?&lt;option&gt; )\))?&gt;&gt;/ /&lt;&lt;(?&lt;fieldname&gt;(?:&lt;?[^()\\]|&lt;?\\[()\\])+)(?:\((?&lt;option&gt;(?:[^()\\]|\\[()\\])*)\))?&gt;&gt;/ </code></pre> <p>updated:</p> <pre><code>&lt;&lt;f&gt;oo(bar&gt;&gt;)&gt;&gt; --&gt; ('f&gt;oo', 'bar&gt;&gt;') &lt;&lt;foo(bar\))&gt;&gt; --&gt; ('foo', 'bar\)') &lt;&lt;foo(bar\\)&gt;&gt; --&gt; ('foo', 'bar\\') &lt;&lt;foo\(bar)&gt;&gt; --&gt; doesn't match &lt;&lt;foo\((bar)&gt;&gt; --&gt; ('foo\(', 'bar') </code></pre> http://stackoverflow.com/questions/463557/bnf-to-regex/463648#463648 0 Answer by Adam Tegen for BNF to Regex Adam Tegen 2009-01-21T00:12:52Z 2009-01-21T00:12:52Z <p>I think I managed to get it to work...</p> <pre><code>&lt;&lt;(?&lt;fieldname&gt;[^\(]+)(?&lt;options&gt;\((?&lt;option&gt;(\\\\|\\\)|[^\\\)])*)\))?&gt;&gt; </code></pre> <p>The trick that I could think of was the option portion:</p> <pre><code>option = (\\\\|\\\)||[^\\\)] </code></pre> <p>Which translates to: Either double-slash, slash-paren, or a non-slash-paren character.</p> <p>Then include it 0 or more times and slap it in a group named "option":</p> <pre><code>((?&lt;option&gt;(\\\\|\\\)|[^\\\)])*) </code></pre> <p>I also changed fieldname to be one or more non-open-parens:</p> <pre><code>fieldname = [^\(]+ </code></pre> <p>Putting that together, I came up with the solution.</p> http://stackoverflow.com/questions/463557/bnf-to-regex/463740#463740 1 Answer by slavy13 for BNF to Regex slavy13 2009-01-21T00:54:51Z 2009-01-21T00:54:51Z <p>Regular expressions denote regular languages. Context-free grammars generate context-free languages. The former language set is a subset of the latter and in the general case you cannot express a context-free language as a regular expression.</p>