in reply to
Re: foreach loop with array of arrays
in thread
foreach loop with array of arrays
That line with map didn't work for me. Try this instead:
my @array = map { [ split ] } @data;
Comment on
Re^2: foreach loop with array of arrays
Download
Code
In Section
Seekers of Perl Wisdom