Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    
    ...
    for (@test_strings) {
        say "Testing [$_] : ", (/$re/ ? '' : 'no '), 'match.';
    }
    
  2. or download this
    $ pm_re_kname_in_charclass.pl
    Testing ["""] : no match.
    ...
    Testing ["''] : no match.
    Testing ['""] : no match.
    Testing [''"] : no match.