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.
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;
}
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