in reply to Re^8: perl parsing
in thread perl parsing

Both push @{$hash{$name}},"$col2,$col3" and push @{$hash{$name}},"$col2\t$col3" create only 1 array element for each line because of the double quotes enclosing the 2 variables. Using a comma or tab only changes the print output format.

poj