Help for this page

Select Code to Download


  1. or download this
    ... $findit .= "/\Q$term\E/i $param ";
    
  2. or download this
    $findit_re = "\\b(?i:\Q$term\E)\\b";
    
  3. or download this
    $findit_re = qr/\b(?i:\Q$term\E)\b/;
    
  4. or download this
    my $target = "[a]";
    if ($string =~ m/$target/) { ... }
    
  5. or download this
    my $target = "[a]";
    if ($string =~ m/\Q$target\E/) { ... }
    # or:
    my $re = quotemeta($target);
    if ($string =~ m/$re/) { ... }