in reply to Open and parsing a file with array of hashes!?

yea you should marshall/serialize this. Storable or MooseX::Storable are pretty neat for that purpose.

Three thousand years of beautiful tradition, from Moses to Sandy Koufax, you're god damn right I'm living in the fucking past

  • Comment on Re: Open and parsing a file with array of hashes!?

Replies are listed 'Best First'.
Re^2: Open and parsing a file with array of hashes!?
by Anonymous Monk on Aug 16, 2012 at 17:33 UTC
    What about this what do you think?
    #!/usr/bin/perl -w use strict; use Data::Dumper; use YAML; ... # from your code you do what was mentioned here: push @data, $tree; } # end of your foreach for my $record (@data) { my $cities = "$record->{'xml_api_reply'}{'weather'}{'forecast_inf +ormation'}{'city'}->{'-data'}"; print "$cities\n"; }

    Let us know, thanks!