www.digitalmars.com         C & C++   DMDScript  

D - D Parser

reply Mark Evans <Mark_member pathlink.com> writes:
http://dparser.sourceforge.net/

"D Parser is an simple but powerful tool for parsing.  You can specify the form
of the text to be parsed using a combination of regular expressions and grammar
productions.  Because of the parsing technique (technically a scannerless GLR
parser based on the Tomita algorithm) there are no restrictions.   The grammar
can be ambiguous, right or left recursive, have any number of null productions,
and because there is no seperate tokenizer, can include whitespace in terminals
and have terminals which are prefixes of other terminals.   D Parser handles not
just well formed computer languages and data files, but just about any wacky
situation that occurs in the real world."
Jul 19 2003
parent "Luna Kid" <lunakid neuropolis.org> writes:
Woohoo, cool, it sounds almost like a perpetuum mobile!... ;)

Sz.

"Mark Evans" <Mark_member pathlink.com> wrote in message
news:bfd782$1av4$1 digitaldaemon.com...
 http://dparser.sourceforge.net/

 "D Parser is an simple but powerful tool for parsing.  You can specify the form
 of the text to be parsed using a combination of regular expressions and grammar
 productions.  Because of the parsing technique (technically a scannerless GLR
 parser based on the Tomita algorithm) there are no restrictions.   The grammar
 can be ambiguous, right or left recursive, have any number of null productions,
 and because there is no seperate tokenizer, can include whitespace in terminals
 and have terminals which are prefixes of other terminals.   D Parser handles
not
 just well formed computer languages and data files, but just about any wacky
 situation that occurs in the real world."
Jul 20 2003