http://qs1969.pair.com?node_id=589506


in reply to Re: Looping through nested repeated elements using XML::Simple
in thread Looping through nested repeated elements using XML::Simple

Thanks pemungkah for the explaining the way to solve this kind of problem. I was using DataDumper to see the contents but this way I can do more things while debugging.
Regards,
Ranjan
  • Comment on Re^2: Looping through nested repeated elements using XML::Simple

Replies are listed 'Best First'.
Re^3: Looping through nested repeated elements using XML::Simple
by pemungkah (Priest) on Dec 13, 2006 at 20:11 UTC
    You're very welcome. One other thing: you can play around with expressions in the debugger as well. For instance, if you wanted to see what @{ $config->{person} } would give you, you could just enter x @{ $config->{person} } at the debugger prompt, and the debugger would happily dump it out for you.