python正则清除字符串里括号和括号里的内容

python正则清除括号里的内容

python正则清除括号以及里面的内容(非贪婪匹配)

import re
test_string = 'weofwji(fdsafs), jfldsjf(fds), ()'
result = re.sub('\(.*?\)', '', test_string)
print(result)

你可能感兴趣的:(python,正则表达式,数据分析)