Help for this page

Select Code to Download


  1. or download this
        my @values= @hash[@array];
  2. or download this
        my $key= @array[2];
         my $value= $hash{$key};
    
  3. or download this
        my $key= $array_of_hashes[2]{key};
        my $value= $array_of_hashes[2]{value};
    
  4. or download this
        my( $key, $value )= @{$array_of_hashes[2]}{qw( key value )};