in reply to Re: WWW::Dict::Leo::Org encoding issue
in thread WWW::Dict::Leo::Org encoding issue
notepad++ normally recognizes the encoding correctly.
I want the output to be in utf-8. I read it at a later stage to display the text in a Text widget.
The reading works so:
open (IN, "<:utf8", "output.txt"); my $in = <IN>; while ($in) { #doing some formatting $in =~ s/\'//g; $in =~ s/\=//g; $in =~ s/\>//g; $in =~ s/(.*)(left)(.*)/$1$2$3/g; $text->insert('end', "$3"); } $in = <IN>; } close IN;
Of course the text wiget doesnt show corectly the äöü.
I am not an expert of encodings, but I could cope with all other encoding issues so far...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: WWW::Dict::Leo::Org encoding issue
by ikegami (Patriarch) on Jun 13, 2010 at 19:38 UTC | |
by fanticla (Scribe) on Jun 13, 2010 at 20:28 UTC | |
|
Re^3: WWW::Dict::Leo::Org encoding issue
by Corion (Patriarch) on Jun 13, 2010 at 19:35 UTC |