Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re^2: How to Fix Character Encoding Damaged Text Using Perl?

by Jim (Curate)
on Jun 15, 2013 at 20:48 UTC ( [id://1039152]=note: print w/replies, xml ) Need Help??


in reply to Re: How to Fix Character Encoding Damaged Text Using Perl?
in thread How to Fix Character Encoding Damaged Text Using Perl?

Thank you very much, Your Mother!

This works wonderfully, and it makes sense given the known cause of the encoding corruption.

use v5.16;
use utf8;
use open qw( :encoding(UTF-8) :std );
use Encode qw( encode decode );

while (my $damaged_text = <DATA>) {
    chomp $damaged_text;

    my $repaired_text = decode('UTF-8', encode('UCS-2LE', $damaged_text));

    say $repaired_text;
}

close DATA;

exit 0;

__DATA__
敒›剕䕇呎
敌馀⁳潧琠韦겜鯥↽

This prints…

    Re: URGENT
    Let’s go to 日本国!

…as expected.

In this case, use utf8 is required.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1039152]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (6)
As of 2024-04-25 13:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found