What is the relation between parser combinators and recursive descent parsers? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T17:23:57Z http://stackoverflow.com/feeds/question/929882 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/929882/what-is-the-relation-between-parser-combinators-and-recursive-descent-parsers 2 What is the relation between parser combinators and recursive descent parsers? DanielSwe 2009-05-30T15:02:15Z 2009-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#929983 1 Answer by Don Wakefield for What is the relation between parser combinators and recursive descent parsers? Don Wakefield 2009-05-30T15:48:14Z 2009-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>