in reply to Re^2: Perl XML "dynamic paths "?
in thread Perl XML "dynamic paths "?

If all you need is one specific element of your path to change, then using ->{$VAR}-> already is enough. See Data::Dumper for getting output of a Perl data structure, and References Quick Reference for how to use references. References are what XML::Simple returns.

Replies are listed 'Best First'.
Re^4: Perl XML "dynamic paths "?
by kazak (Beadle) on Aug 23, 2012 at 08:57 UTC
    Thank you so much, it helped.