在Python中使用正则表达式去掉字符串里的html标签2022-07-15 本文已影响0人 DayBreakL 提取标签为H4中的内容: res=响应返回的一段html内容 html_res = re.findall(r"<h4.*?>(.+?)</h4>", res)