我的文件结构如下:
A: some text
B: more text
even more text
on several lines
A: and we start again
B: more text
more
multiline text
我正在尝试找到将这样拆分文件的正则表达式:
>>>re.findall(regex,f.read())
[('some text','more text','even more text\non several lines'),
('and we start again','more text', 'more\nmultiline text')]
到目前为止,我最终得到了以下内容:
>>>re.findall('A:(.*?)\nB:(.*?)\n(.*?)',f.read(),re.DOTALL)
[(' some text', ' more text', ''), (' and we start again', ' more text', '')]
未捕获多行文字。我想是因为懒惰的限定符真的很懒,什么都没有,但我把它拿出来,正则表达式变得非常贪婪:
>>>re.findall('A:(.*?)\nB:(.*?)\n(.*)',f.read(),re.DOTALL)
[(' some text',
' more text',
'even more text\non several lines\nA: and we start again\nB: more text\nmore\nmultiline text')]
有人有想法吗?谢谢!
答案 0 :(得分:5)
您可以告诉正则表达式在以A:
开头的下一行(或字符串末尾)停止匹配:
re.findall(r'A:(.*?)\nB:(.*?)\n(.*?)(?=^A:|\Z)', f.read(), re.DOTALL|re.MULTILINE)