Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
            print "Matched using $reg: $1\n" if $str =~ $reg;
        }
    }
    
  2. or download this
    Matched using (x\d{3,}?): x123
    Matched using (x\d{3,}?): x123
    ...
    Matched using (x\d{3,}): x123
    Matched using (x\d{3}): x123
    Matched using (x\d{3}): x123