in reply to Re^3: Perl split on regex match
in thread Perl split on regex match

while (<DATA>) { print if (split /\./) < 3; }
(but use a CSV parser!)


The way forward always starts with a minimal test.