chafelix has asked for the wisdom of the Perl Monks concerning the following question:
I am struggling with non-ASCII characters. Specifically I must read a text file with non-ASCII characters (local alphabet). I can do that and they are stored in a datastructure i.e.
$myhash{$ascii_variable}=[@array_of_non-ascii];All manipulations are done with the ascii key. The problem is when I write the processed output to xlsx, the non-ascii characters do not print out right. Again, I am not 'doing anything ' with them, just reading and writing them.
Usually when I had such issues, it was just a couple of such characters, which I just copied manually and copied to an excel file. Then when I was reading the excel file, and printing it, everything was fine. But this time these are too many.
So how should I deal with this?
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: non-ASCII characters in text->Excel
by haukex (Archbishop) on Nov 18, 2019 at 11:12 UTC | |
by chafelix (Novice) on Oct 04, 2025 at 20:13 UTC |