Try reading your csv files with
Text:CSV_XS, adding
use strict; use warnings and some print diagnostics.
#!perl
use strict;
use warnings;
use Spreadsheet::WriteExcel;
use Text::CSV_XS;
my $csv = Text::CSV_XS->new({
binary => 1, sep_char => ',', eol => "\n"});
my $xlsfile = 'c:/temp/xyz_stat1.xls';
my $workbook = Spreadsheet::WriteExcel->new($xlsfile)
or die $!;
my $num_files = $ARGV[0] || 0;
for my $k (1..$num_files){
my $csvfile = $ARGV[$k];
print "Opening $csvfile .. ";
open my $fh, '<', $csvfile or die "Cannot open $csvfile : $!";
my $sheet = $workbook->add_worksheet('sim_'.$k);
my $ar = $csv->getline_all($fh);
$sheet->write_col(0,0,$ar);
close $fh;
print scalar (@$ar). " lines read into sheet sim_$k\n";
}
$workbook->close;
print "$xlsfile created\n";
poj
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.