Help for this page

Select Code to Download


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