Help for this page

Select Code to Download


  1. or download this
    my $tr_pat = quotemeta($tr);
    if ($str =~ /$tr_pat/) {
    
  2. or download this
    if ($str =~ /\Q$tr\E/) {
    
  3. or download this
    if ($str =~ /\Q$tr) {