Parser-generator that outputs C# given a BNF grammar? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T06:39:26Zhttp://stackoverflow.com/feeds/question/153572http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/153572/parser-generator-that-outputs-c-given-a-bnf-grammar4Parser-generator that outputs C# given a BNF grammar?ilitirit2008-09-30T15:32:02Z2009-04-13T21:14:37Z
<p>I'm looking for a tool that will be able to build a parser (in C#) if I give it a BNF grammar (eg. <a href="http://savage.net.au/SQL/sql-2003-2.bnf" rel="nofollow">http://savage.net.au/SQL/sql-2003-2.bnf</a>)</p>
<p>Does such a generator exist?</p>
http://stackoverflow.com/questions/153572/parser-generator-that-outputs-c-given-a-bnf-grammar/153582#1535825Answer by leppie for Parser-generator that outputs C# given a BNF grammar?leppie2008-09-30T15:35:07Z2008-09-30T15:35:07Z<p>Normally BNF grammars are too ambiguous. ANTLR will be probably good for what you are looking for.</p>
http://stackoverflow.com/questions/153572/parser-generator-that-outputs-c-given-a-bnf-grammar/157166#1571663Answer by Jonathan C Dickinson for Parser-generator that outputs C# given a BNF grammar?Jonathan C Dickinson2008-10-01T11:18:18Z2008-10-01T11:18:18Z<p>You will have to tweak the BNF a bit, but <a href="http://www.codeproject.com/KB/recipes/TinyPG.aspx" rel="nofollow" title="TinyPG">TinyPG</a> is a great tool.</p>
http://stackoverflow.com/questions/153572/parser-generator-that-outputs-c-given-a-bnf-grammar/321205#321205-2Answer by Jeremy Rudd for Parser-generator that outputs C# given a BNF grammar?Jeremy Rudd2008-11-26T15:57:31Z2008-11-26T16:38:15Z<p>How can I use <a href="http://www.devincook.com/GOLDParser/grammars/index.htm" rel="nofollow">these BNF grammers</a> with TinyPG? I'm new to BNF so approximately <strong>what sort of conversion will I have to do to convert BNF to EBNF?</strong></p>
<p>Please see <a href="http://stackoverflow.com/questions/321245/use-existing-languages-in-bnf-with-tinypg">this question</a> for more info.</p>
http://stackoverflow.com/questions/153572/parser-generator-that-outputs-c-given-a-bnf-grammar/745442#7454423Answer by Tormod Fjeldskår for Parser-generator that outputs C# given a BNF grammar?Tormod Fjeldskår2009-04-13T21:14:37Z2009-04-13T21:14:37Z<p>The <a href="http://msdn.microsoft.com/en-us/library/bb166441%28loband%29.aspx" rel="nofollow">Visual Studio SDK</a> actually ships with lexer and parser generation tools. These are called MPPG and MPLex and are part of the <a href="http://msdn.microsoft.com/en-us/library/bb165037%28loband%29.aspx" rel="nofollow">Managed Babel</a> package. While the intention of bundling them with the SDK is to develop language extensions for Visual Studio, they are perfectly usable for creating general AST-emitting parsers. </p>
<p>MPLex and MPPG are based on <a href="http://plas.fit.qut.edu.au/gplex/" rel="nofollow">GPLEX</a> and <a href="http://plas.fit.qut.edu.au/gppg/" rel="nofollow">GPPG</a> (projects of Queensland University of Technology) and are used in a similar fashion to Lex and Yacc. The SDK also contains MSBuild actions for making the parser generation a part of the regular build process.</p>
<p>Here's a screencast showing MPLex and MPPG in action:<br />
<a href="http://msdn.microsoft.com/en-us/vstudio/cc837016.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/vstudio/cc837016.aspx</a></p>