首页 > 代码库 > python 实现 全角字符 传转换成 半角字符串
python 实现 全角字符 传转换成 半角字符串
Python 2.7.6 (default, Nov 10 2013, 19:24:18) [MSC v.1500 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> def strQ2B(ustring):
#把全角字符串转半角
ustring=ustring.decode("cp936")
rstring=""
for uchar in ustring:
inside_code=ord(uchar)
print inside_code
if inside_code==0x3000:
inside_code=0x0020
else:
inside_code-=0xfee0
if inside_code<0x0020 or inside_code>0x7e:
rstring+=uchar.encode(‘cp936‘)
else:
rstring+=(unichr(inside_code)).encode(‘cp936‘)
return rstring
>>> strQ2B("hao 哈 还好")
Type "copyright", "credits" or "license()" for more information.
>>> def strQ2B(ustring):
#把全角字符串转半角
ustring=ustring.decode("cp936")
rstring=""
for uchar in ustring:
inside_code=ord(uchar)
print inside_code
if inside_code==0x3000:
inside_code=0x0020
else:
inside_code-=0xfee0
if inside_code<0x0020 or inside_code>0x7e:
rstring+=uchar.encode(‘cp936‘)
else:
rstring+=(unichr(inside_code)).encode(‘cp936‘)
return rstring
>>> strQ2B("hao 哈 还好")
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。