in reply to Basics of parsing (using RTF as a testbed)

Are you familiar with Text::Balanced? I think you'll find it useful...

As for more general advice, you really should have a specification (rather than a "general idea") of the language you are trying to parse before trying to parse it, even if you just have to recreate it from the sample you've got. It gives you something definite to work with. Otherwise, every time you fix your code for a new example, you'll be unsure of whether it still works on previous examples. If you fix the spec first and then code to it, you won't have that issue.

-sauoq
"My two cents aren't worth a dime.";
  • Comment on Re: Basics of parsing (using RTF as a testbed)

Replies are listed 'Best First'.
Re^2: Basics of parsing (using RTF as a testbed)
by Mugatu (Monk) on Feb 25, 2005 at 18:49 UTC
    Are you familiar with Text::Balanced? I think you'll find it useful...

    Indeed it would be useful to me here, except I want to learn the techniques myself. I am not doing this for any purpose but to learn the mechanics of a decent parser (or I should say tokenizer, since that's all I'm really doing).