gpt4 book ai didi

python - 在python中大约将unicode字符串转换为ascii字符串

转载 作者:IT老高 更新时间:2023-10-28 20:38:44 26 4
gpt4 key购买 nike

不知道这是否微不足道,但我需要将 unicode 字符串转换为 ascii 字符串,而且我不希望周围有所有这些转义字符。我的意思是,是否可以“近似”转换为一些非常相似的 ascii 字符?

例如:Gavin O'Connor 被转换为 Gavin O\x92Connor,但我真的希望它只是转换为 Gavin O'Connor。这可能吗?有没有人写了一些工具来做,还是我必须手动替换所有字符?

非常感谢!马可

最佳答案

使用 Unidecode用于音译字符串的包。

>>> import unidecode
>>> unidecode.unidecode(u'Gavin O’Connor')
"Gavin O'Connor"

关于python - 在python中大约将unicode字符串转换为ascii字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8087381/

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