Help for this page

Select Code to Download


  1. or download this
    my @values;
    push @values, $hash{$_} for qw( key1 key2 key2 );
    
  2. or download this
    my @values = @hash{ qw( key1 key2 key3 ) };