Thread Unicode (8 answers)
Opened by Togad at 2007-10-05 15:24

AndreasM
 2007-10-05 15:45
#100351 #100351
User since
2005-10-08
31 Artikel
BenutzerIn
[Homepage] [default_avatar]
Wahrscheinlich suchst Du etwas in dieser Richtung:

Code: (dl )
1
2
3
4
5
6
7
    use Encode;
open(my $iliad,'<:encoding(iso-8859-7)','iliad.greek');
open(my $utf8,'>:utf8','iliad.utf8');
my @epic = <$iliad>;
print $utf8 @epic;
close($utf8);
close($illiad);


http://search.cpan.org/~dankogai/Encode-2.23/lib/E...

Grüße

AndreasM

View full thread Unicode