Help for this page

Select Code to Download


  1. or download this
    %hash = map {$_ => undef } qw(city state country);
    
  2. or download this
    ( 'city' => undef, 'state' => undef, 'country' => undef )
    
  3. or download this
    my %skip = map {$_ => undef } qw(city state country);
    
    ...
         ...
      }
    }
    
  4. or download this
    foreach my $field (param) {
      next if grep { $field eq $_ } qw(city state country);
    ...
         ...
      }
    }