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