Help for this page

Select Code to Download


  1. or download this
    $string = '(.asdf[0-9])$';
    $foo = '(.asdf[0-9])$';
    ...
    if ( $foo =~ m/\Q$string\E/ ) {
        print "will work\n";
    }