BNF to Regex - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T12:58:01Zhttp://stackoverflow.com/feeds/question/463557http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/463557/bnf-to-regex0BNF to RegexAdam Tegen2009-01-20T23:35:31Z2009-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><field> ::= "<<" <fieldname> <options> ">>"
<options> ::= "" | "(" <option> ")"
<option> ::= "" |
<option> <non-paren> |
<option> <escaped-character>
<escaped-character> ::= "\\" | "\)"
<non-paren> ::= any character but paren
<fieldname> ::= any string that doesn't contain "(" or ">>"
</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><<(?<fieldname>.\*?)(\((?<option>.*?)\))?>>
</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#4636010Answer by Joe for BNF to RegexJoe2009-01-20T23:57:45Z2009-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 ::= << 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#4636214Answer by MizardX for BNF to RegexMizardX2009-01-21T00:02:35Z2009-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 ')' <-- 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 = /(?:>?[^(>])+/ //No double >, but single ones are ok.
option = /(?:[^()\\]|\\.)*/ //No parens, unless preceeded by \
pattern = /<<(?<fieldname> )(?:\((?<option> )\))?>>/
</code></pre>
<p>Putting it together:</p>
<pre><code>pattern = /<<(?<fieldname>(?:>?[^(>])+)(?:\((?<option>(?:[^()\\]|\\.)*)\))?>>/
</code></pre>
<p>Some border cases:</p>
<pre><code><<f>oo(bar>>)>> --> ('f>oo', 'bar>>')
<<foo(bar\))>> --> ('foo', 'bar\)')
<<foo(bar\\)>> --> ('foo', 'bar\\')
<<foo\(bar)>> --> ('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><<</code> and <code>>></code>, you could do something like this:</p>
<pre><code>fieldname = /(?:<?[^()\\<]|<?\\[()\\])+/
options = /(?:[^()\\]|\\[()\\])*/
pattern = /<<(?<fieldname> )(?:\((?<option> )\))?>>/
/<<(?<fieldname>(?:<?[^()\\]|<?\\[()\\])+)(?:\((?<option>(?:[^()\\]|\\[()\\])*)\))?>>/
</code></pre>
<p>updated:</p>
<pre><code><<f>oo(bar>>)>> --> ('f>oo', 'bar>>')
<<foo(bar\))>> --> ('foo', 'bar\)')
<<foo(bar\\)>> --> ('foo', 'bar\\')
<<foo\(bar)>> --> doesn't match
<<foo\((bar)>> --> ('foo\(', 'bar')
</code></pre>
http://stackoverflow.com/questions/463557/bnf-to-regex/463648#4636480Answer by Adam Tegen for BNF to RegexAdam Tegen2009-01-21T00:12:52Z2009-01-21T00:12:52Z<p>I think I managed to get it to work...</p>
<pre><code><<(?<fieldname>[^\(]+)(?<options>\((?<option>(\\\\|\\\)|[^\\\)])*)\))?>>
</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>((?<option>(\\\\|\\\)|[^\\\)])*)
</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#4637401Answer by slavy13 for BNF to Regexslavy132009-01-21T00:54:51Z2009-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>