Example 15-6. examples/applications/read_excel.pl
#!/usr/bin/perl
use strict;
use warnings;
use Spreadsheet::ParseExcel::Simple qw();
my $xls = Spreadsheet::ParseExcel::Simple->read("spreadsheet.xls");
foreach my $sheet ($xls->sheets) {
while ($sheet->has_data) {
my @data = $sheet->next_row;
print join "|", @data;
print "\n";
}
}
| Prev | Home (Copyright Gabor Szabo) Perl Training Israel | Next |
| Send e-mail | Up | Process file with fixed width records |