Help for this page

Select Code to Download


  1. or download this
    my %hash1 = ("TEXT", 25);
    my %hash2 = ("text", 25);
    foreach my $item2 (keys(%hash2)) {
        if (exists $hash1{uc $item2}) { print "matches\n";}
    }
    
  2. or download this
    $hash1{lc $item1} = $value1; # etc