import re, sys
m = re.sub('(','',m)
我想清除“(”,“)”。 我该怎么办?
答案 0 :(得分:1)
不要将正则表达式用于这么简单的事情;使用翻译:
>>> str = "This is a (string) (example)..."
>>> str.translate(None, "()")
'This is a string example...'
>>>
答案 1 :(得分:0)
p = re.compile(r'<a>.*?</a>')
my_source = p.sub('<a></a>', my_source, re.DOTALL)