gpt4 book ai didi

python - 为什么匹配组存在但并不真正匹配?

转载 作者:行者123 更新时间:2023-11-30 23:29:07 25 4
gpt4 key购买 nike

为什么下一个代码与单词 SELECT 不匹配?

import re

re_q = r'(\d{4})-(\d{2})-(\d{2})\s(\d{2}):(\d{2}):(\d{2})\.*\d*\+\d{2}\s|\s(SELECT).*'

raw_q = "2014-01-23 15:28:32.993995+04 | SELECT query_start, query from pg_stat_activity WHERE state='active'"

m = re.match( re_q, raw_q )

for i in range( 1, 8 ):
print "Group <{0}>: {1}".format( i, m.group( i ) )

输出:

Group <1>: 2014
Group <2>: 01
Group <3>: 23
Group <4>: 15
Group <5>: 28
Group <6>: 32
Group <7>: None

最佳答案

来自docs ,

'|'

A|B, where A and B can be arbitrary REs, creates a regular expression that will match either A or B. An arbitrary number of REs can be separated by the '|' in this way. This can be used inside groups (see below) as well. As the target string is scanned, REs separated by '|' are tried from left to right. When one pattern completely matches, that branch is accepted. This means that once A matches, B will not be tested further, even if it would produce a longer overall match. In other words, the '|' operator is never greedy. To match a literal '|', use \|, or enclose it inside a character class, as in [|].

| 在正则表达式语言中表示OR。您还必须使用 \ 来转义它。因此,\s|\s 应该是 \s\|\s。解决这个问题后,我得到了

Group <1>: 2014
Group <2>: 01
Group <3>: 23
Group <4>: 15
Group <5>: 28
Group <6>: 32
Group <7>: SELECT

关于python - 为什么匹配组存在但并不真正匹配?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21307767/

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