in reply to How to count the number of columns in a line
my @match_A = split /\t/, $line; push @list_of_headers, @match_A[4..$#match_A];
@list_of_headers= @match_A[4..$#match_A];
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to count the number of columns in a line
by Hofmator (Curate) on Aug 31, 2006 at 13:44 UTC |