http://www.perlmonks.org?node_id=937070


in reply to Re: How to print after using getline_hr (Text::CSV_XS)?
in thread How to print after using getline_hr (Text::CSV_XS)?

Thank you very much for your help Tux!
I changed now the printing of the header too so that I do not need to hardcode the fields anymore:
my @columns = @{$csv->getline (*DATA)}; $csv->print (*STDOUT, \@columns);
Thanks again!
VE