Help for this page

Select Code to Download


  1. or download this
    my $munged_name = Regch($name);
    $thing =~ /$munged_name/;
    
  2. or download this
    $thing =~ /\Q$name\E/i;
    
  3. or download this
    sub Regch {
       return "(?i:\Q$_[0]\E)";
    }