Help for this page

Select Code to Download


  1. or download this
    foreach my $key (keys %csahash) {
        if(defined $cathhash{$key}) {
            print "$key matches. It's values are $csahash{$key} and $cathh
    +ash{$key}\n";
        }
    }
    
  2. or download this
    map { print "$_ matches. It's values are $csahash{$_} and $cathhash{$_
    +}\n" if(defined $cathhash{$_}) } keys %csahash;