Python_Snippets/regex_beispiel.py

11 lines
217 B
Python
Raw Normal View History

2022-03-24 10:44:46 +01:00
import re
# Beispiel String
test_string = '(Beispiel), Text, ohne Kommas'
# Patterns in der eckigen Klammer angeben
test_string_formatiert = re.sub('[,()]', '', test_string)
# Ausgabe
print(test_string_formatiert)