What is the relation between parser combinators and recursive descent parsers? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T17:23:57Zhttp://stackoverflow.com/feeds/question/929882http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/929882/what-is-the-relation-between-parser-combinators-and-recursive-descent-parsers2What is the relation between parser combinators and recursive descent parsers?DanielSwe2009-05-30T15:02:15Z2009-05-30T15:48:14Z
<p>What is the relation between parser combinators and recursive descent parsers?</p>
http://stackoverflow.com/questions/929882/what-is-the-relation-between-parser-combinators-and-recursive-descent-parsers/929983#9299831Answer by Don Wakefield for What is the relation between parser combinators and recursive descent parsers?Don Wakefield2009-05-30T15:48:14Z2009-05-30T15:48:14Z<p>The Wikipedia link on <a href="http://en.wikipedia.org/wiki/Parser%5Fcombinators" rel="nofollow">parser combinators</a> is actually pretty reasonable. From it one of the first things we learn is that "Parser combinators use a top-down parsing strategy", i.e. recursive descent.</p>
<p>Combinators themselves are building blocks for parsers, but they lean toward recursive descent.</p>