Thread Frage zu Text::Iconv
(9 answers)
Opened by bianca at 2010-03-16 17:15
also das funktioniert bei mir. Oder besser gesagt bricht nicht ab. :-)
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 #!/usr/bin/perl use strict; use warnings; my $icon_loaded; sub BEGIN { $icon_loaded=0; eval { use Text::Iconv; }; $icon_loaded=1 unless($@); } my $input=q(NUR EIN TEST); my $conv_from='RABBLE'; my $converter; if($icon_loaded) { eval{ $converter = Text::Iconv->new($conv_from, "UTF-8"); }; #warn($@) if($@); } print "INIT DONE\n"; if($converter) { $input=$converter->convert($input); print "CONVERT DONE\n"; } else { print "NOT CONVERTED\n"; } print "RUNN DONE\n"; print "OUT: $input\n"; EDIT: Ist jetzt etwas näher an deinem Code. Last edited: 2010-03-16 17:45:23 +0100 (CET) |