in reply to Unicode in Perl

I've used Unicode in Perl extensivly, and logged many of the bugs noted in ActiveState's database. Bleading edge kind of guy, I guess.

re "something like that": you mean Illegal UTF-8 codes? If you are getting the data via OLE from Excel, look at a switch to enable proper Unicode returns. I ran into that a short time ago with Word, and there is a node where someone answered me. Set UTF8 as the Code Page in the OLE module, but I forget the exact call. I still had issues, so find my previous note...

—John

Replies are listed 'Best First'.
Re: Re: Unicode in Perl
by dwarf (Initiate) on Sep 15, 2001 at 10:36 UTC
    Well, I am getting the data from a text file. I never used OLE before from Perl, to tell you the truth. I appreciate the info though, will try to find something about that. Thanks for the help...
      Well, then look at the data from the text file in hex to determine what encoding system it's using. Presumably it's NOT UTF-8, from the warning you get. So it's probably using some Windows Code Page.

      —John