in reply to Re: printing CSV to file?
in thread printing CSV to file?
while(<$in>){ $csv->parse( $_ ) or warn "Bad data: $_\n", next; my @row = $csv->fields(); $hashed{ $row[ 0 ] } = \@row; }close $in;
Update:Nevermind I was just being and idiot. Your solution worked great once I understood it thanks.
|
|---|