in reply to How to access the HAsh Reference Elements and Value from XML::Simple out put

Untested:
while (my ($key, $value) = each %{$data->{Dev}->{VeCog}->{Operations}} +) { print $key, ":", $value->{Value}, "\n"; }
  • Comment on Re: How to access the HAsh Reference Elements and Value from XML::Simple out put
  • Download Code

Replies are listed 'Best First'.
Re^2: How to access the HAsh Reference Elements and Value from XML::Simple out put
by shawshankred (Sexton) on Sep 17, 2010 at 13:51 UTC
    Thanks a lot vroom. This works.