reneeb has asked for the wisdom of the Perl Monks concerning the following question:
What do I have to do?Character in "c" format wrapped at /usr/local/lib/perl5/site_perl/5.8.0/OLE/Storage_Lite.pm line +1367 (#1) (W pack) You said pack("c", $x) where $x is either less than -128 or more than 127; the "c" format is only for encoding native operating system characters (ASCII, EB +CDIC, and so on) and not for Unicode characters, so Perl behaved as if y +ou meant pack("c", $x & 255); If you actually want to pack Unicode codepoints, use the "U" forma +t instead.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Problems with Spreadsheet::WriteExcel::Big
by jmcnamara (Monsignor) on Feb 17, 2005 at 12:18 UTC | |
by reneeb (Chaplain) on Feb 17, 2005 at 13:09 UTC | |
|
Re: Problems with Spreadsheet::WriteExcel::Big
by mlh2003 (Scribe) on Feb 17, 2005 at 12:10 UTC |