xpath语法含义

发布于 2024-12-29 10:21:39 字数 151 浏览 1 评论 0原文

我试图理解我应该管理的一段代码。我发现了一些 html 操作,其中 HtmlAgilityPack 用于某些节点选择。有人知道这个xpath选择器的含义吗?

//table/*[not(self::tr or self::tbody)]

I'm trying to understand a piece of code I should manage. I found some html manipulation in which HtmlAgilityPack is used for some node selection. Someone knows the meaning of this xpath selector?

//table/*[not(self::tr or self::tbody)]

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

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

发布评论

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

评论(2

有深☉意 2025-01-05 10:21:39

用英语讲:

选择任何元素节点 (*) 使得它本身不是 tr
tbody ([not(self::tr or self::tbody)]) 这是 a 的子级
可以出现在文档中任何位置的 table 元素 (//table)。

它相当于以下未缩写的表达式

/descendant-or-self::node()/child::table/child::*[not(self::tr or self::tbody)]

In English:

Select any element node (*) such that it is not itself a tr or
tbody ([not(self::tr or self::tbody)]) and that is the child of a
table element that could appear anywhere in the document (//table).

It is equivalent to the following un-abbreviated expression

/descendant-or-self::node()/child::table/child::*[not(self::tr or self::tbody)]
最偏执的依靠 2025-01-05 10:21:39

self 是一种引用所考虑的元素节点名称的便捷方法,无需命名空间。

在此示例中,我们将匹配 任何 元素,该元素是 table 的子元素,并且不是 trtbody

self is a handy way of referring to the name of the element node under consideration, without namespaces.

In this example, we will match any element which is a child of a table, and is not a tr or a tbody.

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