in reply to array of strings that matched a pattern
If you call it right, yes.
if (my @matches = $text =~ /some (regex) here (with) lots (of) capture +s/) { print join "\t", @matches; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: array of strings that matched a pattern
by Anonymous Monk on Apr 29, 2011 at 14:27 UTC | |
by Anonymous Monk on Apr 29, 2011 at 21:13 UTC | |
by Anonymous Monk on Apr 29, 2011 at 21:38 UTC |