in reply to Regular expression match trouble with "+"

Only thing I can think of...
#!/usr/bin/perl use strict; use warnings; $a = "I have to get the + version"; $b = "I have to get the + version"; # if($a =~ m/$b/i) if (lc($a) eq lc($b)) { print "Ok\n"; } else { print "Not the same...\n"; }