http://www.perlmonks.org?node_id=284830


in reply to Re: Using Win32::OLE and Excel - Tips and Tricks
in thread Using Win32::OLE and Excel - Tips and Tricks

Actually, I was faced with the same problem.

After fixing other issues (thank god for PerlMonks!), I found the cure:

use Win32::OLE qw(CP_UTF8); ... # Work in unicode! $Win32::OLE::CP = CP_UTF8; ...
You can use Unicode::String to unpack() the string to look at each unicode char (which was what I had to do).

Cheers
---Lars

Replies are listed 'Best First'.
Re: Re: Re: Using Win32::OLE and Excel - Tips and Tricks
by Anonymous Monk on Aug 21, 2003 at 12:17 UTC
    Actually, using Unicode::String as a container for your data is not needed (in fact, it will croak on acctented chars and other punctuation). Just use the string as you 'normally' do, i.e. to look at each char:

    for my $uchar (split(//, $text)) { my $ord = ord($uchar); ... }
    While it seems natural to me now, it took me some time to locate that my troubles with unicode strings was *using* Unicode::String... :-)

    ---Lars