in reply to Regex Tuning /(?:(?:foo[34])|(?:bar[12]))\.txt/io
my @result = map { process_file($_) } grep (/(?:foo[34]|bar[12])\.txt/ +i, @files);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Regex Tuning
by strictvars (Sexton) on Apr 28, 2005 at 15:00 UTC | |
by Roy Johnson (Monsignor) on Apr 28, 2005 at 15:17 UTC |