import re
regex = re.compile(r".*\: Service \[ssmtp\] accepted connection from ::ffff:\d+\.\d+\.\d+\.\d+:\d+\n.* s_connect: connect ::1:25: Connection refused \(61\)", flags=re.MULTILINE)
test_str = ("2019.04.12 10:16:22 LOG5[4]: Service [ssmtp] accepted connection from ::ffff:185.222.209.224:24846\n"
"2019.04.12 10:16:22 LOG3[4]: s_connect: connect ::1:25: Connection refused (61)\n"
"2019.04.12 10:16:22 LOG5[4]: s_connect: connected 127.0.0.1:25\n"
"2019.04.12 10:16:22 LOG5[4]: Service [ssmtp] connected remote server from 127.0.0.1:54674\n"
"2019.04.12 10:16:30 LOG5[3]: Connection closed: 232 byte(s) sent to TLS, 84 byte(s) sent to socket\n"
"2019.04.12 10:16:30 LOG5[5]: Service [ssmtp] accepted connection from ::ffff:193.57.40.242:62532\n"
"2019.04.12 10:16:31 LOG3[5]: s_connect: connect ::1:25: Connection refused (61)\n"
"2019.04.12 10:16:31 LOG5[5]: s_connect: connected 127.0.0.1:25\n"
"2019.04.12 10:16:31 LOG5[5]: Service [ssmtp] connected remote server from 127.0.0.1:54681\n"
"2019.04.12 10:16:31 LOG5[4]: Connection closed: 232 byte(s) sent to TLS, 70 byte(s) sent to socket\n"
"2019.04.12 10:16:42 LOG5[5]: Connection closed: 190 byte(s) sent to TLS, 34 byte(s) sent to socket\n"
"2019.04.12 10:16:43 LOG5[6]: Service [ssmtp] accepted connection from ::ffff:193.57.40.242:13878\n"
"2019.04.12 10:16:45 LOG3[6]: s_connect: connect ::1:25: Connection refused (61)\n"
"2019.04.12 10:16:45 LOG5[6]: s_connect: connected 127.0.0.1:25\n"
"2019.04.12 10:16:45 LOG5[6]: Service [ssmtp] connected remote server from 127.0.0.1:54688\n"
"2019.04.12 10:16:49 LOG5[6]: Connection closed: 232 byte(s) sent to TLS, 68 byte(s) sent to socket")
matches = regex.finditer(test_str)
for match_num, match in enumerate(matches, start=1):
print(f"Match {match_num} was found at {match.start()}-{match.end()}: {match.group()}")
for group_num, group in enumerate(match.groups(), start=1):
print(f"Group {group_num} found at {match.start(group_num)}-{match.end(group_num)}: {group}")
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for Python, please visit: https://docs.python.org/3/library/re.html