gpt4 book ai didi

python - 在 python 正则表达式中使用 anchor 来获得精确匹配

转载 作者:太空狗 更新时间:2023-10-29 17:02:02 26 4
gpt4 key购买 nike

我需要验证由“v”和正整数组成的版本号,除此之外别无其他例如“v4”、“v1004”

我有

import re
pattern = "\Av(?=\d+)\W"

m = re.match(pattern, "v303")
if m is None:
print "noMatch"
else:
print "match"

但这行不通!删除\A 和\W 将匹配 v303,但也将匹配 v30G,例如

谢谢

最佳答案

非常简单。首先,在你的模式上放置 anchor :

"^patternhere$"

现在,让我们把模式放在一起:

"^v\d+$"

应该这样做。

关于python - 在 python 正则表达式中使用 anchor 来获得精确匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7879600/

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