gpt4 book ai didi

python - 用 Python 查找和替换非 ascii 字符的正则表达式

转载 作者:太空宇宙 更新时间:2023-11-03 12:12:44 25 4
gpt4 key购买 nike

我需要将一些非 ASCII 字符更改为“_”。例如,

Tannh‰user -> Tannh_user
  • 如果我在 Python 中使用正则表达式,我该怎么做?
  • 有没有不使用 RE 的更好方法?

最佳答案

re.sub(r'[^\x00-\x7F]', '_', theString)

如果 theString 是 unicode,或者是 ASCII 占用值 0 到 0x7F(latin-1、UTF-8 等)的编码中的字符串,这将起作用。

关于python - 用 Python 查找和替换非 ascii 字符的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2758921/

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