For simple string search kind of applications the following might work:
http://download.plt-scheme.org/doc/103p1/html/mzscheme/node115.htm
For push down automata:
http://docs.plt-scheme.org/parser-tools/index.html
It all comes down to whether your parsing language is a "regular" language or you need a stack to parse it (like if you have to look for matching braces etc)
--chandra
On Mon, Feb 23, 2009 at 3:20 PM, Goutham D L <dl.goutham@...> wrote:
Hi,
Can anyone suggest some good tutorials for parsing in scheme?
Goutham