15.7. Read Excel fileExample 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";
}
}
|
Follow me: