79195965

Date: 2024-11-16 20:10:16
Score: 1
Natty:
Report link
import re

pattern = r".*\.(?<!\\\.)(.*)"

r = "MyLine.Text.Swap\\ Numbered\\ and\\ Unnumbered\\ List.From\\ -\\ -\\ -\\ to\\ Numbered\\ list\\ 1\\.\\ 2\\.\\ 3\\.\\ "

matches = re.findall(pattern, r)
print(matches)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kanika Singh