Help for this page

Select Code to Download


  1. or download this
    my @keys_in_commmon =
      grep $hashref1->{$_}, keys %$hashref2;
    
  2. or download this
    if( grep $hashref1->{$_}, keys %$hashref2 ) { ... }