Help for this page

Select Code to Download


  1. or download this
    for my $key (keys %hash) {
       if (exists $hash{$key}{FILE1}) {
    ...
          # Key exists only in file 2
       }
    }
    
  2. or download this
    foreach my $key (keys (%hasha)) {
       if (my @temp = grep( /$key/, @prevarray ) ) {
    ...
          next;
       }
    }
    
  3. or download this
    foreach my $key (keys (%hasha))
       {
    ...
          next;
          }
       }
    
  4. or download this
    foreach my $key (keys (%hasha))
    {
    ...
          next;
       }
    }