Help for this page

Select Code to Download


  1. or download this
    perl -MRegexp::List -le'print Regexp::List->new->list2re(0..100)'
    
  2. or download this
    my $re = join '|', 0..100;
    
  3. or download this
    my $re = join '|',
             map quotemeta,
             0..100;