May-16-2019, 07:24 AM
Thank you for the response, I actually managed to get it working, this is what I did:
pattern = re.compile(r'NoError.*') found = re.findall(pattern, text) for match in found: print(match)