gpt4 book ai didi

python - 如何从 python 中的字符串中删除 this\xa0?

转载 作者:太空狗 更新时间:2023-10-29 20:39:37 27 4
gpt4 key购买 nike

我有以下字符串:

 word = u'Buffalo,\xa0IL\xa060625'

我不想要“\xa0”。我怎样才能摆脱它?我想要的字符串是:

word = 'Buffalo, IL 06025

最佳答案

最可靠的方法是使用 unidecode module将所有非 ASCII 字符转换为最接近的 ASCII自动等效。

字符\xa0(不是您所说的\xa)是NO-BREAK SPACE ,最接近的 ASCII 等价物当然是常规空格。

import unidecode
word = unidecode.unidecode(word)

关于python - 如何从 python 中的字符串中删除 this\xa0?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26068832/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com