gpt4 book ai didi

xpath - 如何使用XPath选择所有空元素

转载 作者:行者123 更新时间:2023-12-03 15:26:14 25 4
gpt4 key购买 nike

假定以下标记:

<html>
<body>
<p>
<strong> </strong>
<strong>
</strong>
<strong><em>Bar</em> </strong>
<strong><em> </em> </strong>
</p>
</body>
</html>

如何通过XPath查询获取以下元素?
<strong>  </strong>
<strong>
</strong>
<strong><em> </em> </strong>

我以为前两种情况都会像 //*[normalize-space(text()) = '' and not(node())],但事实并非如此。而且我不知道如何处理第三种情况。

更准确地说:我正在搜索仅包含空格,换行和相同子节点的所有节点。

最佳答案

以下XPath查询将它们全部捕获:

//*[not(normalize-space())]

但不是:
<strong><em>Bar</em>  </strong>

关于xpath - 如何使用XPath选择所有空元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29458600/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com