Thread Umlaute (von ... nach ... ) (10 answers)
Opened by namenlos at 2014-08-11 15:52

Gast namenlos
 2014-08-11 16:58
#176811 #176811
Verdammte ******* das funktioniert! Geniales Tool, iconv. Vielen vielen Dank!!!

Code (perl): (dl )
1
2
3
4
5
$name =  = 'Meier,G' . "\x81" . 'nter';
use Text::Iconv;
my $converter = Text::Iconv->new("IBM852", "UTF-8");
$name = $converter->convert("$name");
print ">>>" , $name, "\n";


modedit Editiert von GwenDragon: Perl-Code in [perl]-Tags
Last edited: 2014-08-11 17:14:02 +0200 (CEST)

View full thread Umlaute (von ... nach ... )