gpt4 book ai didi

Python正则表达式,如何向否定子部分添加有效字符

转载 作者:行者123 更新时间:2023-12-01 05:49:27 28 4
gpt4 key购买 nike

在以下Python正则表达式中:

pattern = re.compile(r"""
^ # Match start of line.
([^\W\d]+) # One or more word characters (including ê, etc.; but excluding 0-9)
# as a returned group. Not \W and not \d.
$ # Match end of line.
""", re.VERBOSE + re.UNICODE)

如何将 - 字符(破折号)添加为 [] 中的有效字符?

最佳答案

您可以使用pipe合并两个正则表达式:

((?:[^\W\d]|-)+)

关于Python正则表达式,如何向否定子部分添加有效字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14919137/

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