Help for this page

Select Code to Download


  1. or download this
    my $pattern = qr/one/i;
    
  2. or download this
    my $sensitive   = qr/one/;
    my $insensitive = qr/one/i;
    ...
          print "Unmatched: pattern was $pattern and token was $_\n";
       }
    }