my $string = "some unsafe chars"; .... =~ /\Q$string\E/; #### my $string = "some unsafe chars"; my $temp = quotemeta $string; .... =~ /$temp/;