http://qs321.pair.com?node_id=911986

dipesh777 has asked for the wisdom of the Perl Monks concerning the following question:

How can we compare two hashed with each other? Currently i am using data compare to compare but i am not able to compare case insensitive data. Please can anyone suggest me how to use Data::Compare for comparison with case insensitive data or is there any other method to compare two hashes given as below,
use strict; use warnings; use Data::Dumper; use Data::Compare; my @array1= ( { 'my_id' => '86091', 'ip' => '2001:DB8:0:0:0:0:0:0/128' }, { 'my_id' => '86091', 'ip' => '2001:DB8:0:0:0:0:0:0/32' } ); my @array2 = ( { 'my_id' => '86091', 'ip' => '2001:DB8:0:0:0:0:0:0/128' }, { 'my_id' => '86091', 'ip' => '2001:db8:0:0:0:0:0:0/32' } ); my $hash1 = \@array1; my $hash2 = \@array2; my $result = compare($hash1, $hash2)?"PASS":"FAIL"; print "Result is $result\n";
how can i lowercase all hashes in first array i.e array1?