gpt4 book ai didi

python - 定位和可选组

转载 作者:行者123 更新时间:2023-12-01 04:48:52 24 4
gpt4 key购买 nike

我的示例数据集:

Loaded: mismatch (No such file or directory)
Loaded: not-found ()
Loaded: error (Reason:No such file or directory)
Loaded: error (Reason: No such file or directory)
Loaded: mystery

我的正则表达式测试(逐行读取):

re.findall("[Loaded: ](\S*) \([Reason: ]?(.*)\)", line)

我分别得到:

[('mismatch', 'No such file or directory')]
[('not-found', '')]
[('error', 'eason:No such file or directory')]
[('error', 'eason: No such file or directory')]

第一个和第二个列表都可以。

但是第三个和第四个不是,并且缺少第五个。

如何解决这个问题?

最佳答案

不确定这是否是您需要的,但它符合所有
你的测试字符串正确。

组 1 是加载的消息,组 2 是原因。

 # Loaded:\s+(\S+)(?:\s+\((?:Reason:\s*)?([^)]*)\))?     

Loaded: \s+
( \S+ ) # (1)
(?:
\s+
\(
(?: Reason: \s* )?
( [^)]* ) # (2)
\)
)?

关于python - 定位和可选组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28838236/

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