- or download this
printf "Before deleting: city= %s state=%s zip= %s\n",
$city ,
...
$city,
$location_hash->{ $city }->{ 'ST' },
$location_hash->{ $city }->{ 'ZIP' };
- or download this
Before deleting: city= Lucketts state=VA zip= 20176
After deleting: city= Lucketts state= zip=
- or download this
for my $city ( keys %$location_hash ) {
.
...
$location_hash->{ $city }->{ 'ZIP' };
} end for loop
- or download this
Before deleting: state=VA zip= 20176
After deleting: state= zip=
Before deleting: state=VA zip= 20176
After deleting: state= zip=