This should do what you want:
while ( <INFILE> ) { next if /^>/; push @dat, split; } [download]
In reply to Re: split array elements by jwkrahn in thread split array elements by coldy