in reply to how to extract string by possible groupings?
Can you maybe use something like:
@match = split /\s{2,}/, $_;or
@match = split /\t/, $_;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: how to extract string by possible groupings?
by adrive (Scribe) on Jun 03, 2014 at 02:26 UTC |