Help for this page

Select Code to Download


  1. or download this
    use Regexp::List qw( );
    my $re = Regexp::List->new()->list2re( 250..730 );
    
  2. or download this
    use 5.010; # Trie alternations
    my ($re) = map qr/$_/,
               join '|',
              #map quotemeta,  # Not needed this time.
               250..730;