http://www.perlmonks.org?node_id=912055


in reply to How can we compare two hashed with each other for case insensitive data?

If case really doesn't matter, then the best solution is to just initialize the values with lc.

However, you can also set the values to lc after the fact as well:

lcvalues(@array1); lcvalues(@array2); sub lcvalues { for (@_) { if (ref $_ eq 'HASH') { lcvalues(values %$_); } elsif (ref $_ eq 'ARRAY') { lcvalues(@$_); } elsif (ref $_) { warn "Unknown data type: " . ref $_; } else { $_ = lc $_; } } }
  • Comment on Re: How can we compare two hashed with each other for case insensitive data?
  • Download Code

Replies are listed 'Best First'.
Re^2: How can we compare two hashed with each other for case insensitive data?
by dipesh777 (Novice) on Jun 30, 2011 at 02:32 UTC
    yes it worked! Thanks