open FILE, "96well2.txt" or die $!; while (){ chomp $_; @values = split('\t', $_); $val = @values; print $val; } close (FILE);