Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Why does Encode::Repair only correctly fix one of these two tandem characters?

by remiah (Hermit)
on Aug 10, 2014 at 11:38 UTC ( [id://1096904]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    $ldqm=encode('UTF-8',                 #internal char to utf-8 bytes
        decode('Windows-1252',          #This expects Windows-1252 bytes b
    +ut utf-8 bytes passed from outer encode
            encode('UTF-8',$ldgm)));  #here internal char to UTF-8bytes
    
  2. or download this
    my $buff=encode('UTF-8',$ldgm);                #internal char to utf-8
    + bytes
    from_to($buff, 'UTF-8', 'Windows-1252');         #now buff converted i
    +nto 1252 bytes
    $buff=decode('Windows-1252', $buff);            #1252 bytes converted 
    +into internal char
    print 'ret=' . encode('UTF-8', $buff);            #encode into UTF8 by
    +tes and print
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (4)
As of 2024-03-29 12:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found