python中如何使用re.sub替换模式字符串的一部分
import re
html_tag = re.compile("<(.*?) .*?>")
src = "Legislature, <a href=\"http://www.legis.state.tx.us/BillLookup/Text.aspx?LegSess=81R&Bill=HB2626\" target=\"_blank\">House Bill No. 2626</a></p>"
tgt = re.sub(html_tag, r"<\1>", src)
#Legislature, <a>House Bill No. 2626</a></p>
注意repl字符串一定要加r,否则\1在结果里会变成\u001,而不是pattern字符串里第一个小括号括出的部分。