gpt4 book ai didi

python - Regex Python - 只保留 ASCII 和版权符号

转载 作者:太空宇宙 更新时间:2023-11-03 13:07:02 24 4
gpt4 key购买 nike

我有以下函数只保留 ASCII 字符:

import re

def remove_special_chars(txt):
txt = re.sub(r'[^\x00-\x7F]+', '', txt)
return txt

但是现在我也想保留版权符号(©)。我应该在模式中添加什么?

最佳答案

将版权符号的十六进制 \xA9 ( source ) 添加到您的匹配组:

txt = re.sub(r'[^\x00-\x7F\xA9]+', '', txt)

Regex101

关于python - Regex Python - 只保留 ASCII 和版权符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55122295/

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