Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    
    print "Matched quoted\n" if $SearchInHere =~/\Q$Name\E/;
    print "Matched raw\n" if $SearchInHere =~/$Name/;
    
  2. or download this
    Unmatched [ in regex; marked by <-- HERE in m/[ <-- HERE A/ at noname.
    +pl line 8.
    Matched quoted