http://www.perlmonks.org?node_id=821496


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

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".

Replies are listed 'Best First'.
Re^4: map <IF> to hash with replacement
by Your Mother (Archbishop) on Feb 05, 2010 at 05:28 UTC