Gary Egleton wrote:

> can any one point me at how to compare two hases.

You can also use a CPAN module, e.g.

use Data::Compare;
if (Compare(\%hash1, \%hash2)) {
    # hashes are equal
} else {
    # they arent
}


Greetings,
Janek


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to