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