When I try decode a shift-jis encoded string and encode it back, some of the characters get garbled: I have following code:

use Encode qw(decode encode);
$val=;
print "\nbefore decoding: $val";
my $ustr = Encode::decode("shiftjis",$val);
print "\nafter decoding: $ustr";
print "\nbefore encoding: $ustr";
$val = Encode::encode("shiftjis",$ustr);
print "\nafter encoding: $val";

when I use a string : helloソworld in input it gets properly decoded and encoded back,i.e. before decoding and after encoding prints in above code print the same value. But when I tried another string like : ⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩ

The end output got garbled.

Is it a perl library specific problem or it is a general shift jis mapping problem? Is there any solution for it?

link|improve this question
feedback

2 Answers

You lack error-checking.

use utf8;
use Devel::Peek qw(Dump);
use Encode qw(encode);

sub as_shiftjis {
    my ($string) = @_;
    return encode(
        'Shift_JIS',    # http://www.iana.org/assignments/character-sets
        $string,
        Encode::FB_CROAK
    );
}

Dump as_shiftjis 'helloソworld';
Dump as_shiftjis 'ⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩ';

Output:

SV = PV(0x9148a0) at 0x9dd490
  REFCNT = 1
  FLAGS = (TEMP,POK,pPOK)
  PV = 0x930e80 "hello\203\\world"\0
  CUR = 12
  LEN = 16
"\x{2160}" does not map to shiftjis at …
link|improve this answer
As far as it goes your answer is correct but the actual problem is slightly deeper than that. – user181548 Apr 2 '11 at 12:52
feedback

You should simply replace the shiftjis with cp932.

http://en.wikipedia.org/wiki/Code_page_932

link|improve this answer
1  
Yes - this is a notorious problem where the encoding used in Microsoft Windows isn't really "shift JIS" but CP932. – user181548 Apr 2 '11 at 12:51
Thanks, It worked on windows very well. But it is not working on unix platforms , do we have to use any specific encodings for platforms such as Linux, AIX etc ? – Sushant Apr 14 '11 at 9:13
@Sush Hmm, I have no idea why it doesn't work for you... Encode has mapping tables for Japanese encodings (such as cp932, shiftjis, etc.) and so it should work platform-independently - in fact, I made sure it works properly on Linux. I suspect your problem lies elsewhere. – yibe Apr 15 '11 at 4:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.