- or download this
chomp($line) #line from FILE2
my ($zip_code,$city) = split /\|/,$line;
$zip_city{$zip_code} = $city; #insert city into hash
- or download this
chomp($line);
my ($state,$min,$max) = split /,/,$line;
...
delete $zip_city{$current_zipcode};
}
}
- or download this
print "$zipfrom3,$zipzip_city_state{$zipfrom3}{city}, $zip_city_state{
+$zipfrom3}{state}\n";