in reply to Re^3: matching a regular expression
in thread matching a regular expression
my %abbrevs = map { my $word = $_; ($word => join("|", map { substr($word, 1, $_) } 1 .. length($word) +})) } qw( hsbn admin ... );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: matching a regular expression
by HuckinFappy (Pilgrim) on May 18, 2006 at 18:27 UTC |