Thread UCS-2 LE Datei einlesen und konvertieren
(6 answers)
Opened by Kean at 2016-08-01 14:31
schonmal
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 use strict; use warnings; open my $in, "<:encoding(UCS-2LE)", "test.csv" or die $!; open my $out, ">:encoding(UTF-8)", "test2.csv" or die $!; while ( my $line = <$in> ) { print $out $line; } OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/) -- Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html Perl-Entwicklung: http://perl-services.de/ |