码迷,mamicode.com
首页 > 其他好文 > 详细

去除\u3000

时间:2017-12-03 00:36:20      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:显示   pre   keyword   ber   func   cti   python   decode   dex   

replace(u‘\u3000‘,u‘‘)

string1 = ‘\xa1\xa1\xb0\xe9‘  #GBK下显示为“ 伴”
string2 = ‘\xb0\xa1\xa1\xe9‘  #GBK下显示为“啊¢”
 
 
 
print string1.decode(‘GBK‘).replace(u‘\u3000‘, u‘‘)  #输出“伴”
print string2.decode(‘GBK‘).replace(u‘\u3000‘, u‘‘)   #输出“啊¢”
 
string1 = ‘\xa1\xa1\xb0\xe9‘  #GBK下显示为“ 伴”</span>
string2 = ‘\xb0\xa1\xa1\xe9‘  #GBK下显示为“啊¢”
 
print string1.replace(‘ ‘, ‘‘)
print string2.replace(‘ ‘, ‘‘)

去除\u3000

标签:显示   pre   keyword   ber   func   cti   python   decode   dex   

原文地址:http://www.cnblogs.com/realmonkeykingsun/p/7955967.html

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