11 lines
217 B
Python
11 lines
217 B
Python
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) |