Python:正则表达式无法在字符串上找到任何匹配项

时间:2019-01-22 09:28:43

标签: python regex regex-group

我无法找到具有以上代码的匹配项:

sample="""[2019-01-02 16:15:17.882][P:1624/T:1420][UIPCall.cpp:743 
CUIPCall::HandleUICEvent()][Enter]
[2019-01-02 16:15:17.883][P:1624/T:1420][UIPCallState.cpp:1776 
CUIPCallIncomingLine1State::HandleUICEvent()][Enter]"""
pattern=r'\[(.*?)\]\[(.*?)\]\[(.+?)(HandleUICEvent|FastNtfClosed_Line1_Common|Login|Logout)\(\)\]\[(.*?)\]$'

p= re.compile(pattern, re.MULTILINE | re.DOTALL)

p.match(sample)

这很麻烦,因为它可以在https://regex101.com/r/hw7pyY/1上运行,但在python上却不匹配。

它必须为re.match(),因为我需要.end().start()函数。

0 个答案:

没有答案