I need to parse some excel tab delimited files. I am NOT going to edit them just use them as a reference. The first row contains the column names and the first column each row is the id.
The files have various amounts of columns from 100 to 375 and as many rows as 700.
considering speed would the best approach be:
shift off the first line
split on the tabs
loop throught the rest of the file splitting on the tabs
and building a hash table.
$hashTable{$rowID}{$colID} = $dataIntersected;
is there a faster way of doing this?
Thanks for your input
The files have various amounts of columns from 100 to 375 and as many rows as 700.
considering speed would the best approach be:
shift off the first line
split on the tabs
loop throught the rest of the file splitting on the tabs
and building a hash table.
$hashTable{$rowID}{$colID} = $dataIntersected;
is there a faster way of doing this?
Thanks for your input