Where can I get material for learning EBNF? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T09:35:35Z http://stackoverflow.com/feeds/question/365012 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/365012/where-can-i-get-material-for-learning-ebnf 3 Where can I get material for learning EBNF? yesraaj 2008-12-13T08:47:39Z 2008-12-18T02:40:44Z <p>Extended Backus–Naur Form: <strong>EBNF</strong> </p> <p>I'm very new to parsing concepts. Where can I get sufficiently easy to read and follow material for writing a grammar for the boost::spirit library, which uses a grammar similar to EBNF?</p> <p>Currently I am looking into EBNF from Wikipedia. </p> http://stackoverflow.com/questions/365012/where-can-i-get-material-for-learning-ebnf/365026#365026 2 Answer by eed3si9n for Where can I get material for learning EBNF? eed3si9n 2008-12-13T09:09:09Z 2008-12-14T20:41:32Z <p>BNF itself is simple, but you need to get used to the way compiler writers think. They are not necessarily easy read, but following are lecture notes from UC Berkeley and Stanford.</p> <ul> <li><a href="http://inst.eecs.berkeley.edu/~cs164/sp08/lectures/index.html" rel="nofollow">Berkeley CS 164: Lecture Notes</a></li> <li><a href="http://www.stanford.edu/class/cs143/materials/lectures/index.html" rel="nofollow">Stanford CS143: Lecture Notes</a></li> </ul> http://stackoverflow.com/questions/365012/where-can-i-get-material-for-learning-ebnf/365108#365108 0 Answer by Malcolm for Where can I get material for learning EBNF? Malcolm 2008-12-13T11:07:31Z 2008-12-13T11:07:31Z <p>Well, I think that Wikipedia is the simplest way for two reasons:</p> <ul> <li>It states the most relevant points on the article</li> <li>It has links for further reading at the bottom of the page</li> </ul> <p>Also I would suggest reading of standart BNF just to get familiar with the idea behind it.</p> <p>At least I always start with Wikipedia too, and it almost always helps.</p> http://stackoverflow.com/questions/365012/where-can-i-get-material-for-learning-ebnf/376753#376753 2 Answer by Norman Ramsey for Where can I get material for learning EBNF? Norman Ramsey 2008-12-18T02:40:44Z 2008-12-18T02:40:44Z <p>The Wikipedia article is accurate. If you have access, definitely read <a href="http://portal.acm.org/citation.cfm?id=359883" rel="nofollow">Wirth's original article</a> on EBNF.</p> <p>The other thing to know is that EBNF was designed to make it <strong>easy to hand-write recursive-descent parsers</strong> for languages in which each syntactic construct has identifying keywords at the beginning. Curly braces translate to <code>while</code> loops; square brackets (optional stuff) translates to <code>if</code>, and alternatives translate to <code>if-then-else</code> or <code>case</code> statements. If you have the luxury of designing your language this way you can knock out a parser quickly <em>and</em> give good error messages.</p> <p>The only place this gets a bit tedious is when you have a language in which there are infix operators with many different levels of precedence. For that you want Dave Hanson's paper <a href="http://www3.interscience.wiley.com/journal/113447083/abstract?CRETRY=1&amp;SRETRY=0" rel="nofollow">Compact Recursive-Descent Parsing of Expressions</a>. Maybe the Princeton tech report series has a free version, and you can always look at the code in <a href="http://www.cs.princeton.edu/software/lcc" rel="nofollow">Hanson's C front end</a>.</p>