in reply to Re: Re: Re: Re: Re: Re: Short (and clever?) CSV-to-AoAin thread Short (and clever?) CSV-to-AoA
my @AoA; while (<DATA>) { my $n = 0; for (split) { push @{$AoA[$n++]}, $_; } } [download]
-- Randal L. Schwartz, Perl hacker