Help for this page

Select Code to Download


  1. or download this
    
    ...
       my @selectedKeys = grep{ $hash{ $_ } eq $scalar } keys %hash;
    ...
    
  2. or download this
    $hash{ $key } = $value;
    
  3. or download this
    push @{ $hash{ $value } }, $key;
    
  4. or download this
    ...
       my @selectKeys = @{ $hash{ $scalar } };