fork(1) download
  1. import re
  2.  
  3. s = "field1: content asd..\n\nfield2: content\n\nqwe...\n\nfield3: content asfdqegt"
  4. pattern = r"^field\d+:.*(?:\r?\n(?!field\d+:).*)*"
  5. res = [x.replace('\n', '') for x in re.findall(pattern, s, re.MULTILINE)]
  6. print (res)
Success #stdin #stdout 0.02s 9468KB
stdin
Standard input is empty
stdout
['field1: content asd..', 'field2: contentqwe...', 'field3: content asfdqegt']