pavanpvss has asked for the wisdom of the Perl Monks concerning the following question:
use Spreadsheet::ParseExcel; my $filename = shift || "C:\Earthlink.xls"; my $parser = Spreadsheet::ParseExcel->new(); my $workbook = $parser->parse("$filename"); if ( !defined $workbook ) { die $parser->error(), ".\n"; }
I have saved the excel sheet in C:/ drive in 95-2003 format.In the above code i am getting error as File Not Found. I am not getting any value in $workbook. Can anbody please help me ?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Doubt regarding parsing
by toolic (Bishop) on Apr 04, 2012 at 18:04 UTC | |
|