in reply to Re^2: Open and parsing a file with array of hashes!?
in thread Open and parsing a file with array of hashes!?
use strict; use warnings; my $weather = do "weather.txt"; print $_->{xml_api_reply}->{weather}->{forecast_information}->{city}-> +{-data},$/ for @$weather;
Prints:
Miami, FL Boston, MA
|
|---|