Help for this page

Select Code to Download


  1. or download this
    %hash =("name" =>"john", "age"=>"25", "job"=>"programer", "location"=>
    +"US");
    while (($key, $val) = each %hash)
    ...
         }
            
    }
    
  2. or download this
    $matchkey eq $_ ? $var = $hash{$_} : $var='' for keys %hash;