我想提取一个可能出现在两个子字符串之间或原始字符串末尾的子字符串。起始定界符为ab,结束定界符可以为cd或原始字符串的结尾。

例子:

c = 'ab123:random text1 cd4576:text2'
d = 'cd123:text2 ab75589:text1'
e = 'ab35:rand text2 cd765:text1'


所需答案:

c = 'random text1'
d = 'text1'
e = 'rand text2'


我可以将起始子字符串与re.findall('ab\d+:(.*)', i)匹配。但是,当我尝试添加结束模式时,找不到所需的答案:

re.findall('ab\d+:(.*)', i)
>>> ['random text1 cd4576: text2'], [' text1'], ['rand text2 cd765: text1']

re.findall('^ab\d+:(.*)cd\d+:', i)
>>>['random text1 '], [], ['rand text2 ']

最佳答案

您可以改用re.findall(r'\bab\d+:(.*?)(?:\s*\bcd|$)', i)

关于python - 使用可选的结束模式提取字符串,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52702788/

10-10 04:09