使用 Xpath 选择表数据

发布于 2024-11-07 14:39:35 字数 644 浏览 0 评论 0原文

我曾经选择类名为“list”的表。我使用此 xpath 查询来选择 Htmlagilitypack 中的节点,

//table[@class="list"]/td/a[@href]

但无法获得正确的输出。我的 xpath 代码块有什么问题?

这是我想从中获取数据的表:

<table class="list">
<tbody>
    <tr>
        <td width="315">
            <b>1</b> <a href="http://www.url.html">data</a><br>
            <b>2</b> <a href="http://www.url.html">data</a><br>
            <b>3</b> <a href="http://www.url.html">data</a><br>
        </td>
    </tr>
</tbody>
</table>

i used to select table with class name "list". I use this xpath query to select node in Htmlagilitypack

//table[@class="list"]/td/a[@href]

but couldn't get correct output. What's wrong with my xpath code block?

This is the table that i want to grab the data from:

<table class="list">
<tbody>
    <tr>
        <td width="315">
            <b>1</b> <a href="http://www.url.html">data</a><br>
            <b>2</b> <a href="http://www.url.html">data</a><br>
            <b>3</b> <a href="http://www.url.html">data</a><br>
        </td>
    </tr>
</tbody>
</table>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小帐篷 2024-11-14 14:39:35

我认为您需要获取所有锚点的 href 值。为此你可以使用
//table[@class='list']//td/a/@href

您的 XPath 不起作用,因为您正在尝试查找这样的 它是 的直接子级,而您显示的代码片段中的情况并非如此。因此,在 XPath 中使用 //TD。

希望这有帮助。

I consider that you need to get href values of all the anchors. For that you could use
//table[@class='list']//td/a/@href

Your XPath did not work because you are trying to find such a <TD> which is immediate child of <TABLE> which is not the case in the code snippet you've shown. Hence use //TD in your XPath.

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文