Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: msft xlsx2txt help please!

by sflitman (Hermit)
on Aug 22, 2010 at 05:43 UTC ( [id://856551]=note: print w/replies, xml ) Need Help??


in reply to msft xlsx2txt help please!

I took this from Spreadsheet::XLSX's perldoc. Make sure modules and all dependencies are installed through CPAN, and I found perl 5.10 was needed due to a dependency on Weak References in Spreadsheet::ParseExcel.
#!/usr/bin/perl # SSF 082110 - for perlmonks - convert XLSX to tab-delimited use warnings; use strict; use Spreadsheet::XLSX; use Text::Iconv; my ($file,$sheetindex)=@ARGV; die "Usage: $0 file.xlsx [sheetindex]\n" unless $file; $sheetindex||=0; my $converter=Text::Iconv->new("utf-8","windows-1251"); my $excel=Spreadsheet::XLSX->new($file,$converter); my @sheets=@{$excel->{Worksheet}}; die "Bad sheet index: $sheetindex\n" if $sheetindex<0 or $sheetindex>$ +#sheets; my $sheet=$sheets[$sheetindex]; $sheet->{MaxRow}||=$sheet->{MinRow}; for my $row ($sheet->{MinRow} .. $sheet->{MaxRow}) { $sheet->{MaxCol}||=$sheet->{MinCol}; for my $col ($sheet->{MinCol}..$sheet->{MaxCol}) { my $cell=$sheet->{Cells}[$row][$col]; if ($cell) { print $cell->{Val}; } print "\t" if $col<$sheet->{MaxCol}; } print "\n"; } exit;
Note that it only outputs one sheet, defaulting to the first. I've noticed that Excel's blank book has three sheets, so it is already three-dimensional. This script could use more error checking, but it works on a Linux system with the caveats listed above.

HTH,

SSF

Replies are listed 'Best First'.
Re^2: msft xlsx2txt help please!
by david_lyon (Sexton) on Aug 23, 2010 at 13:19 UTC
    Bows to The Monks....

    Thanks for everyones help

    Thank you sflitman for posting the code.....incredible, works beautifully

    Bows

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://856551]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (1)
As of 2024-04-25 19:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found