pr3-s2/s2_a2.py

11 lines
312 B
Python
Raw Permalink Normal View History

2023-01-09 17:41:29 +01:00
import re
text = "If the the problem is textual, use the the re module"
# \b Beschränkt den Match auf den Anfang/das Ende des Wortes
# \1 Referenz auf die erste Gruppe (In dem Fall das erste Vorkommen des Wortes)
# \w+ Matched mindestens ein Wort
text = re.sub(r'\b(\w+)( \1\b)+', r'\1', text)
print(text)