python用re.findall获取网页全部符合要求的元素
发布网友
发布时间:2022-05-10 20:56
我来回答
共1个回答
热心网友
时间:2022-05-10 22:25
关键在于查找时间的正则表达式,也就是程序中reg变量的字符串,你可以去了解一下
import re
s = """<a class="time" target="_blank" href="">昨天 00:26</a>
<a class="time" target="_blank" href="">今天 00:26</a>"""
def getTime(html):
reg = r'<a class="time".*>(.*)</a>'
timere = re.compile(reg)
timelist = re.findall(timere,html)
for t in timelist:
print t
getTime(s)