import re
regex = re.compile(r"(.{5,})\s*\1", flags=re.MULTILINE | re.IGNORECASE)
test_str = ("Vsuvka redukovaná Vsuvka redukovaná\n"
"Quick mini ventil 16x3/4\" Quick mini ventil 16x3/4\"\n"
"Mechanická T-spojka 25 x 25 x 25 Mechanická T-spojka 25 x 25 x 25\n"
"Mechanické Popup koleno 90° 32 x 32 x 3/4\" s vnútorným závitom Mechanické Popup koleno 90° 32 x 32 x 3/4\" s vnútorným závitom")
subst = "\\1"
result = regex.sub(subst, test_str)
if result:
print(result)
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