--- In [email protected], Sri <linkto...@...> wrote: > just wanted to know that if there are some more efficient ways to any other > scripting languages like perl/python.
Have you looked at lex/yacc (or their modern equivalents)? Eg. http://epaperpress.com/lexandyacc/ More of a library than a language. In theory it makes the parsing bit of your C program a lot easier, and forces you to formalise the input specification. But in my limited experience debugging yacc specifications can be a bit of a nightmare. John
