How do I compare two hashes in Perl without using Data::Compare?
|
|
The best approach differs according to your purposes. The FAQ item mentioned by Sinan is a good resource: How do I test whether two arrays or hashes are equal?. During development and debugging (and of course when writing unit tests) I have found
Output:
|
|||||||||||
|
|
Compare is not a detailed enough phrase when talking about hashes. There are many ways to compare hashes: Do they have the same number of keys?
Are the keys the same in both hashes?
Do they have the same keys and the same values in both hashes?
Are they isomorphic (I will leave this one up to the reader as I don't particularly want to try implementing it from scratch)? Or some other measure of equal? And, of course, this code only deals with simple hashes. Adding complex data structures makes it even more complex. |
|||
|
|
|
|
|||
|
|
|
Quick, dirty, and I'm sure not that efficient:
|
||||
|
|
|
|||
|
|