I need convert SHIFT_JIS charset to JIS charset by python.I found a function on google codesearch. But the function is used php. I can't use python's unpack() correctly. Plz give me some help.Thank you.

php code http://codesearch.google.com/codesearch/p?hl=ja#I0cABDTB4TA/pub/FreeBSD/ports/distfiles/IlohaMail-0.8.13.tar.gz|ypARwxhiv6g/IlohaMail-0.8.13/IlohaMail/lang/jp/jcode.inc&q=sjisToJis%20lang:php&l=163


function SJIStoJIS(&$str_SJIS)

{

    $str_JIS = '';
    $mode = 0;
    $b = unpack("C*", $str_SJIS);
    $n = count($b);
    //Escape sequence
    $ESC = array(chr(0x1B).chr(0x28).chr(0x42),
                 chr(0x1B).chr(0x24).chr(0x42),
                 chr(0x1B).chr(0x28).chr(0x49));

    for ($i = 1; $i <= $n; $i++) {
            $b1 = $b[$i];
            if (0xA1 <= $b1 && $b1 <= 0xDF) {
                    if ($mode != 2) {
                            $mode = 2;
                            $str_JIS .= $ESC[$mode];
                    }
                    $str_JIS .= chr($b1 - 0x80);
            } elseif ($b1 >= 0x80) {
                    if ($mode != 1) {
                            $mode = 1;
                            $str_JIS .= $ESC[$mode];
                    }
                    $b2 = $b[$i+1];
                    $b1 <<= 1;
                    if ($b2 < 0x9F) {
                            if ($b1 < 0x13F) $b1 -= 0xE1; else $b1 -= 0x61;
                            if ($b2 > 0x7E)  $b2 -= 0x20; else $b2 -= 0x1F;
                    } else {
                            if ($b1 < 0x13F) $b1 -= 0xE0; else $b1 -= 0x60;
                            $b2 -= 0x7E;
                    }
                    $str_JIS .= chr($b1).chr($b2);
                    $i++;
            } else {
                    if ($mode != 0) {
                            $mode = 0;
                            $str_JIS .= $ESC[$mode];
                    }
                    $str_JIS .= chr($b1);
            }
    }
    if ($mode != 0) $str_JIS .= $ESC[0];

    return $str_JIS;

}

link|improve this question
For future reference, there's no unpack in python, you iterate over a string directly (for letter in mystring). But you don't need to do that here: see my answer below. – Thomas K Nov 26 '10 at 13:26
feedback

1 Answer

I don't know precisely which codec JIS is, but I think it's one of the iso2022_jp ones. So you should be able to replace the entire function with something like:

inputstr.decode("shift_jis").encode("iso2022_jp")

See the codecs module documentation for the full list of possible codecs (scroll down to the bottom).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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