我正在尝试从具有如下多行的网页中提取 href 链接,但我只想要具有<b>
块的那些的 a href
<tr bgcolor="#ffffff">
<td>
<a href="?6384593.html" style="background-color: transparent;">
<span class="ts">
<font size="1">
<font color="#006633">
</font>
</font>
<b>Lee Swanson Research Update</b>
<font color="#7777CC"> - Swanson Health Products</font></span>
</a>
</td>
</tr>
在这种情况下,我使用 xpath 表达式“//b”来查找粗体标记,但我特别想要的是 a href 链接。xpath可以做到这一点吗?