python 实现 全角字符 传转换成 半角字符串

时间:2014-05-09 22:27:33   收藏:0   阅读:342
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  哈 还好")

python 实现 全角字符 传转换成 半角字符串,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!