gpt4 book ai didi

python - 检查字符串是否包含正则表达式的模式

转载 作者:太空宇宙 更新时间:2023-11-04 10:38:50 31 4
gpt4 key购买 nike

在我的 python 函数中,如果提供的参数包含表示正则表达式的字符串(ex-r'^\D{2}$'),我想采取一些措施。我如何检查该字符串是否具有这样的正则表达式模式?

最佳答案

也许尝试编译字符串:

def is_regex(s):
try:
re.compile(s)
return True
except:
return False

关于python - 检查字符串是否包含正则表达式的模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22014886/

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