Use existing languages in BNF with TinyPG? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T04:26:45Z http://stackoverflow.com/feeds/question/321245 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/321245/use-existing-languages-in-bnf-with-tinypg 2 Use existing languages in BNF with TinyPG? Jeremy Rudd 2008-11-26T16:09:14Z 2009-11-06T02:12:01Z <p>How can I use <a href="http://www.devincook.com/GOLDParser/grammars/index.htm" rel="nofollow">these BNF grammars</a> which are in <a href="http://www.devincook.com/GOLDParser/doc/meta-language/index.htm" rel="nofollow">GOLD meta-syntax</a> (RegExp + BNF) with TinyPG? I'm new to BNF so approximately what sort of conversion will I have to do to convert BNF to EBNF?</p> <p>I believe it should be pretty simple since TinyPG needs RegExp + <strong>EBNF</strong> in comparison to the GOLD grammars which are RegExp + <strong>BNF</strong>.</p> <p>Also, is there any TinyPG source code for any language available, just to see what sort of conversion I would have to do?</p> http://stackoverflow.com/questions/321245/use-existing-languages-in-bnf-with-tinypg/1684989#1684989 1 Answer by caving for Use existing languages in BNF with TinyPG? caving 2009-11-06T02:12:01Z 2009-11-06T02:12:01Z <p>EBNF is not <em>entirely</em> backwards compatible with BNF, however the differences are actually slight, you should be familiar with the document at</p> <p><a href="http://www.cs.cmu.edu/~pattis/misc/ebnf.pdf" rel="nofollow">http://www.cs.cmu.edu/~pattis/misc/ebnf.pdf</a></p> <p>Primarily you have to handle the special characters &lt;>|:= (enclosed in double quotes).</p> <p>You could just use the GOLD meta-syntax engine to output your parser if it can be in one of the supported languages - instead of using TinyPG...</p> <p>It begs the question - What language will your parser be in when you are implementing it?</p>