码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2014-05-09 22:27:33      阅读:342      评论:0      收藏:0      [点我收藏+]

标签: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  哈 还好")

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

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

标签:python

原文地址:http://blog.csdn.net/fanyunlei/article/details/25408531

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!