I want to find the regex, which makes following matching(Notice that there is a linebreakt!)
inputString:
"a0Ew0" "a0Ew0" "a0Ew0s" "a0Ew0s"
output:
"a0Ew0" "a0Ew0s"
You can convert the list to a set to get rid of duplicates
See the following: https://repl.it/FFOJ/0
l = set(["a0Ew000001UD2t8EAD", "a0Ew000001UD2t8EAD", "a0Ew000001UD4AFEA1", "a0Ew000001UD4AFEA1"]) print(l)
2.1m questions
2.1m answers
60 comments
57.0k users