读取excel文件:
-
-
-
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";
-
}
-
}
- }
生成EXCEL文件:
-
-
-
use Spreadsheet::WriteExcel;
-
-
-
my $workbook = Spreadsheet::WriteExcel->new('test.xls');
-
-
-
$worksheet = $workbook->add_worksheet();
-
-
-
$format = $workbook->add_format();
-
$format->set_bold();
-
$format->set_color('red');
-
$format->set_align('center');
-
-
-
$col = $row = 0;
-
$worksheet->write($row, $col, 'Hi Excel!', $format);
-
$worksheet->write(1, $col, 'Hi Excel!');
-
-
-
$worksheet->write('A3', 1.2345);
-
$worksheet->write('A4', '=SIN(PI()/4)');
- exit;
|
请发表评论