Parser-generator that outputs C# given a BNF grammar? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T06:39:26Z http://stackoverflow.com/feeds/question/153572 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/153572/parser-generator-that-outputs-c-given-a-bnf-grammar 4 Parser-generator that outputs C# given a BNF grammar? ilitirit 2008-09-30T15:32:02Z 2009-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#153582 5 Answer by leppie for Parser-generator that outputs C# given a BNF grammar? leppie 2008-09-30T15:35:07Z 2008-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#157166 3 Answer by Jonathan C Dickinson for Parser-generator that outputs C# given a BNF grammar? Jonathan C Dickinson 2008-10-01T11:18:18Z 2008-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 -2 Answer by Jeremy Rudd for Parser-generator that outputs C# given a BNF grammar? Jeremy Rudd 2008-11-26T15:57:31Z 2008-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#745442 3 Answer by Tormod Fjeldskår for Parser-generator that outputs C# given a BNF grammar? Tormod Fjeldskår 2009-04-13T21:14:37Z 2009-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>