Help for this page

Select Code to Download


  1. or download this
    %hash1 = ("TEXT", 25);
    %hash2 = ("text", 25);
    ...
        if (lc $item1 eq lc $item2}) { print "matches\n";}
      }
    }
    
  2. or download this
    %hash1 = ("TEXT", 25);
    %hash2 = ("text", 25);
    ...
        if (exists $lchash1{lc $item2}) { print "matches\n";}
      }
    }