Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re^2: map <IF> to hash with replacement

by Your Mother (Archbishop)
on Feb 05, 2010 at 02:22 UTC ( [id://821488]=note: print w/replies, xml ) Need Help??


in reply to Re: map <IF> to hash with replacement
in thread map <IF> to hash with replacement

I understand this is well intentioned but I think it's bad advice. XML::Twig, XML::Rules, and XML::LibXML are probably all to be preferred over XML::Parser; I'd argue the libxml wrapper is definitely a better choice. And XML::Simple is anything but; it's a maze of special cases and their mapping parameters. It can be a very useful module but I wouldn't recommend it without knowing the problem and input at hand.

  • Comment on Re^2: map <IF> to hash with replacement

Replies are listed 'Best First'.
Re^3: map <IF> to hash with replacement
by mrdvt92 (Acolyte) on Feb 05, 2010 at 04:34 UTC
    I would use XML::Simple. It's dead easy to bring XML in as Perl structures.
    use XML::Simple qw{XMLin}; print keys %{XMLin("<root><x>1</x><y>2</y></root>")};
    This prints "xy".

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://821488]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (4)
As of 2024-04-25 07:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found