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

perl101 has asked for the wisdom of the Perl Monks concerning the following question:

#!/usr/bin/perl use strict; use warnings; use diagnostics; use Excel::Writer::XLSX; <p> Direct copy of example for use of module "Text::CSV_XS" <p> my $csv = Text::CSV_XS->new ({ binary => 1 }); open my $fh, "<", "a.csv" or die "a.csv: $!"; while (my $row = $csv->getline ($fh)) { # do something with @$row

added next 4 lines to "do something with @$row"

open my $fh_xlsx, ">", "write_to.XLSX" or die "write_to.XLSX: $!"; $fh_xlsx=1; chomp $row; print "@$row\n"; } $csv->eof or $csv->error_diag; close $fh or die "a.csv: $!"; close $fh_xlsx or die "write_to.XLSX: $!";

Replies are listed 'Best First'.
Re: copy .csv to .XLSX
by Anonymous Monk on Nov 30, 2012 at 03:19 UTC