79634740

Date: 2025-05-23 02:05:19
Score: 0.5
Natty:
Report link

Remove \n and re.DOTALL and also add strip()

Snippet:

time_stamp, messages = re.findall(r'(\d+/\d+/\d+ \d\d:\d\d:\d\d[.]\d\d\d\d)(.*)', line)[0]

And:

print(f'time_stamp: {time_stamp}, message: {messages.strip()}')

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Adios Gringo