如何编写 Python 正则表达式来获取网页中的所有锚点标签?


下列代码从给定字符串中提取所有标签

示例

import re
rex = re.compile(r'[\<\>]')
l = "this is text1 <a href='irawati.com' target='_blank'>hi</a> this is text2"
print rex.findall(l)

输出

['<', '>', '<', '>']

更新于:2020 年 2 月 20 日

166 次浏览

开启你的职业生涯

通过完成课程获得认证

立即开始
广告