gpt4 book ai didi

python - 如何让re.search寻找多种模式?

转载 作者:行者123 更新时间:2023-12-01 01:16:39 25 4
gpt4 key购买 nike

您好,我正在阅读一本有关正则表达式的书,但我陷入了这个任务。

c) 如果字符串中不包含空格或字符串数​​量和价格之间存在字符串错误,则匹配字符串

str1 = '23,qty,price,42'
str2 = 'qty price,oh'
str3 = '3.14,qty,6,errors,9,price,3'
str4 = 'qty-6,apple-56,price-234

我想出了如何检查字符串是否不包含空格以及数量和价格之间是否存在错误,但我无法将两者结合起来。

bool(re.search(r"^[^ ]+$",str1))
bool(re.search(r"(qty((?!error).)*price)",str1))

我的问题是,如果我想检查这两个要求,re.search 必须是什么样子?

最佳答案

编写一个在字符串包含其中任何一个时匹配的正则表达式,然后使用 not 运算符反转结果会更容易。

if not re.search(r"\s|qty.*error.*price", str1):

关于python - 如何让re.search寻找多种模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54285490/

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