我想用字符串中的括号删除括号和内容。 我尝试了以下代码:
a['Street Name'].str.replace('\(.*)','')
但它不起作用。有人可以告诉我这个陈述有什么问题吗?
答案 0 :(得分:1)
试试这个:
import re
s = "I want to remove all words in brackets( like (this) and ((this)) and ((even) this))."
while True:
s_new = re.sub(r'\([^\(]*?\)', r'', s)
if s_new == s:
break
s = s_new
print(s_new) # I want to remove all words in brackets.