in reply to Re: comparing key-value pairs of two hashes
in thread comparing key-value pairs of two hashes

There does exist also a hash function called "each".
while (($key,$value) = each %hash) {
print "$key => $value\n";
}
Hope it will help you a little.
  • Comment on Re^2: comparing key-value pairs of two hashes