Help for this page

Select Code to Download


  1. or download this
    [dean:~]$ perl -v
    
    ...
    Unrecognized escape \U passed through in regex; marked by <-- HERE in 
    +m/a\U <-- HERE bc/ at /tmp/deleteme.pl line 6.
    'aBC' =~ (?-xism:a\Ubc)
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
    print "'$target' =~ $patt\n";
    print $target =~ $patt;
    print $/;