my @arr; while ( <INFILE> ) { next if ($_ =~ /^(\>)/); push @arr, split(/ /, $_); } [download]
In reply to Re: split array elements by roubi in thread split array elements by coldy