Search found 1 match

by tranquilChaos
Sat Mar 12, 2011 4:30 pm
Forum: Coding Questions
Topic: Parsers
Replies: 7
Views: 2731

Re: Parsers

To get an understanding how to most efficiently do this, I would suggest you read-up on grammars - the most commonly discussed is Context Free Grammar (CFG). This will show you how to break your code into trees that can be parsed based on the grammar constructs.

To get started, I would say start ...