http://qs1969.pair.com?node_id=871554


in reply to Re^3: Ignore Case when comparing Hash Keys
in thread Ignore Case when comparing Hash Keys

Robotics Thanks. This works in Key Comparison but how do i get the value of the corresponding Key in the if block? Thanks again.
  • Comment on Re^4: Ignore Case when comparing Hash Keys

Replies are listed 'Best First'.
Re^5: Ignore Case when comparing Hash Keys
by roboticus (Chancellor) on Nov 15, 2010 at 20:09 UTC

    avidcoder:

    Basically the same way:

    %hash1 = ("John", 43, "Paul", 25, "Marie", 22); %hash2 = ("john", 43, "Paul", 25, "marie", 22); while (($KEY_2, $VALUE_2) = each %hash2){ my @matches = grep { m/$KEY_2/i } keys %hash1; if (@matches) { print "$KEY_2 : Matched ", join(", ", @matches), "\n"; } else{ print "$KEY_2 : Did not match\n"; } }

    ...roboticus