s = """
<tbody>
<tr>
<td style="border-bottom: none">
<span class="graytext" style="font-weight: bold;"> Reply #3 - </span>
<span class="graytext" style="font-size: 11px">
05/13/09 2:02am
<br>
</span>
</td>
</tr>
</tbody>
"""
在HTML字符串中,我需要取出日期字符串。從lxml解析html中的日期字符串
我試圖以這種方式
import lxml
doc = lxml.html.fromstring(s)
doc.xpath('//span[@class="graytext" and @style="font-size: 11px"]')
但是,這是行不通的。我應該只需要使用日期字符串。