vote up 4 vote down star

Is there a CPAN module that can read a string like this:

"[[<asdf>, <foo>], (abc, def, ghi), ({'jkl'})]"

...and parse it into some sort of tree structure that's easy to walk and pretty-print?

flag

67% accept rate

5 Answers

vote up 1 vote down

Damian Conway's Parse::RecDescent

I haven't used this, but it's a good bet that a Perl module written by Damian Conway is worth using.

link|flag
vote up -1 vote down

If the string is identical to the Data Dumper format, then it can be eval-ed back into the original structure.

link|flag
vote up 9 vote down

I think that you could build on top of Text::Balanced, which will do a lot of the heavy lifting for you. You'll still need to build a tree structure, though.

link|flag
vote up 1 vote down

Perl 6 is going to have built-in facilities to help support this. In the interim, Text::Balanced (as mentioned by Dave Rolsky) is probably the module of choice. Note that it, too, was written by Damian Conway (as commended by Bill Karwin).

link|flag
vote up 3 vote down

Perl 5.10's regular expressions can handle balanced structures like that. See the (?PARNO) (?-PARNO) (?+PARNO) (?R) (?0) section in perlre.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.