This is probably simple, but I can't figure this out: I need regex expression which would extract following records (Each record may span multiple lines and delimited by one or more blank lines):
TextTextTextTextTextTextText
TextTextTextTextTextTextTextTextText
(one or more blank lines)
TextTextTextTextText
TextTextText
TextTextTextTextTextTextText
(one or more blank lines)
TextTextTextTextText TextTextTextTextTextTextTextTextTextText
re.split(r'\n\n+', '''\ntext\n\ntext\n\n''')