我有一个包含一堆非 ASCII 字符的字符串,我想删除它。我在 Python 3 中使用了以下函数:
def removeNonAscii(s):
return "".join(filter(lambda x: ord(x)<128, s))
str1 = "Hi there!\xc2\xa0My\xc2\xa0name\xc2\xa0is\xc2\xa0Blue "
new = removeNonAscii(str1)
新字符串变为:
你好!MynameisBlue
是否可以在字符串之间获取空格,例如:
你好呀!我的名字是蓝