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,
how can i lowercase all hashes in first array i.e array1?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";
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: How can we compare two hashed with each other for case insensitive data?
by moritz (Cardinal) on Jun 29, 2011 at 15:35 UTC | |
by dipesh777 (Novice) on Jun 30, 2011 at 02:32 UTC | |
Re: How can we compare two hashed with each other for case insensitive data?
by wind (Priest) on Jun 29, 2011 at 22:23 UTC | |
by dipesh777 (Novice) on Jun 30, 2011 at 02:32 UTC | |
Re: How can we compare two hashed with each other for case insensitive data?
by d5e5 (Beadle) on Jun 30, 2011 at 15:41 UTC |
Back to
Seekers of Perl Wisdom