python字符串中的奇异字符

时间:2018-11-07 16:18:39

标签: python string unicode python-unicode unicode-escapes

我正在读取文件的内容,其中一个字符是未知字符。我将文件中具有该未知字符的部分复制到了文本编辑器中,并创建了以下脚本。我上传了脚本的图像,因为我无法将此字符粘贴到SO上,因此显示为空白。图像中的未知字符为“ <0x01>”。这个角色是什么?删除此字符和其他类似字符的正确方法是什么?

x = "<0x01> hello"

print x.decode('utf-8', 'ignore')
print x.replace("<0x01>", "")

enter image description here

You can see the image in the description now

Python 2.7.6

Ubuntu 14.04

0 个答案:

没有答案