leha has asked for the wisdom of the Perl Monks concerning the following question:
UPD:
solution from John McNamara:
#!/usr/bin/perl -w use strict; use Spreadsheet::ParseExcel; my $parser = Spreadsheet::ParseExcel->new(); my $workbook = $parser->parse('Book1.xls'); if ( !defined $workbook ) { die $parser->error(), ".\n"; } 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; my $format = $cell->get_format(); print "Row, Col = ($row, $col)\n"; print "Value = ", $cell->value(), "\n"; print "Indent = ", $format->{Indent}, "\n"; print "\n"; } } } __END__
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: parsing excel with 5 levels of indentations
by kcott (Archbishop) on Oct 03, 2013 at 08:05 UTC | |
by leha (Novice) on Oct 03, 2013 at 08:49 UTC | |
by Happy-the-monk (Canon) on Oct 03, 2013 at 09:29 UTC | |
by leha (Novice) on Oct 03, 2013 at 11:09 UTC | |
|
Re: parsing excel with 5 levels of indentations ( JMCNAMARA/Spreadsheet-ParseExcel-0.59/sample/chkInfo.pl )
by Anonymous Monk on Oct 03, 2013 at 07:59 UTC |