本文介绍了从 Python 字符串中删除零宽度空格 unicode 字符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在 Python 中有一个这样的字符串:
I have a string in Python like this:
u'\u200cHealth & Fitness'
如何删除
\u200c
字符串的一部分?
推荐答案
您可以将其编码为 ascii
并忽略错误:
You can encode it into ascii
and ignore errors:
u'\u200cHealth & Fitness'.encode('ascii', 'ignore')
输出:
'Health & Fitness'
这篇关于从 Python 字符串中删除零宽度空格 unicode 字符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!