Perl之Spreadsheet::ParseExcel

转载:http://www.alonely.com.cn/CGI-Perl/20160908/29061.html

use strict;

use Spreadsheet::ParseExcel;

my $parser   = Spreadsheet::ParseExcel->new();

my $workbook = $parser->Parse('Book1.xls');

for my $worksheet ( $workbook->worksheets() ) {

my ( $row_min, $row_max ) = $worksheet->row_range();

my ( $col_min, $col_max ) = $worksheet->col_range();

 

for my $row ( $row_min .. $row_max ) {

for my $col ( $col_min .. $col_max ) {

my $cell = $worksheet->get_cell( $row, $col );

next unless $cell;

print "Row, Col    = ($row, $col)\n";

print "Value       = ", $cell->value(),       "\n";

print "Unformatted = ", $cell->unformatted(), "\n";

print "\n";

}

}

}

猜你喜欢

转载自lzqustc.iteye.com/blog/2367576