in reply to Re: Using Win32::OLE and Excel - Tips and Tricks
in thread Using Win32::OLE and Excel - Tips and Tricks
After fixing other issues (thank god for PerlMonks!), I found the cure:
You can use Unicode::String to unpack() the string to look at each unicode char (which was what I had to do).use Win32::OLE qw(CP_UTF8); ... # Work in unicode! $Win32::OLE::CP = CP_UTF8; ...
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 |