Thread From : UTF-16LE => To : UTF8 (15 answers)
Opened by etsej at 2011-03-21 16:39

Gast etsej
 2011-03-21 16:39
#146706 #146706
Hi,
wie kann man eine Datei (from 'UTF16-LE' to 'UTF8') konvertieren?
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl

use strict;
use warnings;
use Encode qw/from_to/;

open my $input, "<:encoding(UTF-16LE)", ".input.txt" or die "kann das Lexikon nicht öffnen: $!";

from_to($input,"UTF16LE","UTF8");
print "$input\n";

Ich bekomme nur folgende Meldung : "Segmentation fault"
Danke.

View full thread From : UTF-16LE => To : UTF8