Revision 30e7f787
Von Moritz Bunkus vor mehr als 13 Jahren hinzugefügt
SL/Iconv.pm | ||
---|---|---|
37 | 37 |
$to_charset ||= Common::DEFAULT_CHARSET; |
38 | 38 |
|
39 | 39 |
my $converter = _get_converter($from_charset, $to_charset); |
40 |
return $converter->convert($text); |
|
40 |
$text = $converter->convert($text); |
|
41 |
$text = decode("utf-8-strict", $text) if ($to_charset =~ m/^utf-?8$/i) && !Encode::is_utf8($text); |
|
42 |
|
|
43 |
return $text; |
|
41 | 44 |
} |
42 | 45 |
|
43 | 46 |
sub _convert { |
Auch abrufbar als: Unified diff
Text bei Iconv-Konvertierung nach UTF-8 in Perls internes Encoding umwandeln
Und das auch bei Objekt-Aufrufsyntax: