“Удалить все скобки из String Python” Ответ

Python Удалить текст между скобками

# credit to the Stack Overflow user in the source link
>>> import re 
>>> x = "This is a sentence. (once a day) [twice a day]"
>>> re.sub("[\(\[].*?[\)\]]", "", x)
'This is a sentence.  '
wolf-like_hunter

Удалить все скобки из String Python

>>> table = str.maketrans({"(":None, ")":None})
Dark Dolphin

Удалить все скобки из String Python

>>> table = str.maketrans(dict.fromkeys("()"))
>>> string1 = '(this) (is) (a) (test)'
>>> string1.translate(table)
'this is a test'
Dark Dolphin

Ответы похожие на “Удалить все скобки из String Python”

Вопросы похожие на “Удалить все скобки из String Python”

Больше похожих ответов на “Удалить все скобки из String Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования