1
import re, sys
m = re.sub('(','',m)

我想清除 "(",")" 。我该怎么办?

4

2 回答 2

1

不要对这么简单的事情使用正则表达式;使用翻译:

Python 字符串文档

>>> str = "This is a (string) (example)..."
>>> str.translate(None, "()")
'This is a string example...'
>>>
于 2013-09-15T15:40:44.740 回答
0
p = re.compile(r'<a>.*?</a>')
my_source = p.sub('<a></a>', my_source, re.DOTALL)
于 2013-09-14T20:24:46.380 回答