in reply to Tab delimited code problem?
foreach my $line (@file) { my @fields = split(/\t/, $line); # do stuff with @fields... } [download]