Help for this page

Select Code to Download


  1. or download this
    while(my ($key1,$value1)=each(%hash1)){
    while(my ($key2,$value2)=each(%hash2)){
    ...
             ...
    }
    }
    
  2. or download this
    while(my ($key1,$value1)=each(%hash1)){
        if (exists $hash2{$key} ) {
    ...
             ...
         }
    }
    
  3. or download this
    foreach(@allhits){
        while(my $str=<FH1>){