Re: FmtDefault-Warning in Spread***-ParseExcel
- From: Jim Gibson <jgibson@xxxxxxxxxxxxxxxxx>
- Date: Tue, 20 Dec 2005 09:56:06 -0800
In article
<d321ee9902d6c0a55d58256993c2baac@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx>,
Pit <pharrendorf@xxxxxxxxxx> wrote:
> Hi all,
>
> if using the module Spread***-ParseExcel I always get the following
> message:
>
> Character in 'C' format wrapped in pack at
> C:/Perl/site/lib/Spread***/ParseExcel/FmtDefault.pm line 68.
>
> the programm works fine, but why appears this message ??
>From perldiag:
Character in "C" format wrapped in pack
(W pack) You said
pack("C", $x)
where $x is either less than 0 or more than 255; the "C" format is
only for encoding native operating system characters (ASCII,
EBCDIC, and so on) and not for Unicode characters, so Perl behaved
as if you meant
pack("C", $x & 255)
If you actually want to pack Unicode codepoints, use the "U" format
instead.
Posted Via Usenet.com Premium Usenet Newsgroup Services
----------------------------------------------------------
** SPEED ** RETENTION ** COMPLETION ** ANONYMITY **
----------------------------------------------------------
http://www.usenet.com
.
- References:
- Prev by Date: FmtDefault-Warning in Spread***-ParseExcel
- Next by Date: use of xml in perl application to describe command line logic
- Previous by thread: FmtDefault-Warning in Spread***-ParseExcel
- Next by thread: use of xml in perl application to describe command line logic
- Index(es):