in reply to Re^2: Compare Two Hash refs of Hashes
in thread Compare Two Hash refs of Hashes
while ( ($ko,$vo) = each %$old ) { while ( ($kn,$vn) = each %$new ) { # compare } }
of course there are other tricks possible like using hash slices or array slices of keys of hashes and so on...
Cheers Rolf
|
|---|