Name : perl-Encode-DoubleEncodedUTF8
| |
Version : 0.05
| Vendor : obs://build_opensuse_org/devel:languages:perl
|
Release : 9.46
| Date : 2024-08-05 17:31:27
|
Group : Development/Libraries/Perl
| Source RPM : perl-Encode-DoubleEncodedUTF8-0.05-9.46.src.rpm
|
Size : 0.01 MB
| |
Packager : (none)
| |
Summary : Fix double encoded UTF-8 bytes to the correct one
|
Description :
Encode::DoubleEncodedUTF8 adds a new encoding \'utf-8-de\' and fixes double encoded utf-8 bytes found in the original bytes to the correct Unicode entity.
The double encoded utf-8 frequently happens when strings with UTF-8 flag and without are concatenated, for instance:
my $string = \"L\\x{e9}on\"; # latin-1 utf8::upgrade($string); my $bytes = \"L\\xc3\\xa9on\"; # utf-8
my $dodgy_utf8 = encode_utf8($string . \" \" . $bytes); # $bytes is now double encoded
my $fixed = decode(\"utf-8-de\", $dodgy_utf8); # \"L\\x{e9}on L\\x{e9}on\";
See encoding::warnings for more details.
|
RPM found in directory: /packages/linux-pbone/ftp5.gwdg.de/pub/opensuse/repositories/devel:/languages:/perl:/CPAN-E/openSUSE_Tumbleweed/noarch |