nagilum has asked for the wisdom of the Perl Monks concerning the following question:
then I use the usualuse strict; use Spreadsheet::ParseExcel; use Spreadsheet::WriteExcel; use utf8;
as this didn't work I also tried:my $cell = $oWkS->{Cells}[$iR][0]; my $section=$cell->Value;
returns the same '???' as did the previous version. (And yes, I did {use bytes; print length($value) } to see if it's not just a terminal problem. )use strict; use Spreadsheet::WriteExcel; use Cwd; use Win32::OLE; use Win32::OLE::Variant; use Win32::OLE::Const 'Microsoft Excel'; use utf8; but $worksheet->Cells($iR,1)->{'Value'}
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: reading Unicode from Excel
by bart (Canon) on Oct 08, 2002 at 10:05 UTC | |
by nagilum (Initiate) on Oct 08, 2002 at 10:54 UTC | |
by Anonymous Monk on Apr 29, 2008 at 06:52 UTC | |
by ddn123456 (Pilgrim) on Apr 29, 2008 at 13:03 UTC |