去除u3000
Posted 不可叽叽歪歪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了去除u3000相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章
python 爬虫爬取内容时, xa0 u00A0,u0020, u3000 的含义与处理方法
07_Warning $HADOOP_HOME is deprecated.去除办法
连接MySQL出现错误:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)(代码片段