我試圖用python的re.sub函數來替換一些文本。Python:數字re.sub中的反向引用
>>> import re
>>> text = "<hi type=\"italic\"> the></hi>"
>>> pat_error = re.compile(">(\s*\w*)*>")
>>> pat_error.search(text)
<_sre.SRE_Match object at 0xb7a3fea0>
>>> re.sub(pat_error, ">\1", text)
'<hi type="italic">\x01</hi>'
之後文本的價值應該在你的代碼
"<hi type="italic"> the</hi>"
這真的不是問題... – 2009-12-18 19:58:17