For a wealth of information on parser generators, especially LL(k) (where 'k' is the settable amount of look-ahead required for the particular parser you are creating), check out ANTLR: http://www.antlr.org/ -- Glenn Brian Wisti wrote: > On Monday, March 3, 2003, at 03:58 PM, Kent R. Spillner wrote: >> LL(1) is a specific class of parser. The LL means left-to-right, >> left-most derivation. The number in parenthesis (in this case, 1) >> indicates the number of tokens of look-ahead required to parse. > > Thank you very much. It is good to end each day knowing a little more > than you did at the start. If you can end the day having taught someone > else something new, that is even better! >