Help for this page

Select Code to Download


  1. or download this
    sub regex2 {
        my $pat = shift;
        sub { my $count; ++$count while /$pat/iogx; $count };
    }