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
    oh man..........this is the simpliest and it is applicable to my case since the group separation is only if it is more than 1 space. thanks a bunch