gpt4 book ai didi

xml - xpath 仅获取初步节点

转载 作者:行者123 更新时间:2023-12-03 17:34:00 25 4
gpt4 key购买 nike

我有一个xml结构:

<pages>

<author>Me</author>
<copyright>me inc. 2015,</copyright>
<lastUpdate>2/1/1999</lastUpdate>

<Home>--------------------</Home>
<About>--------------------</About>
<Contact>------------------</Contact>

</pages>

我需要一个将选择所有节点的 xpath 表达式
在首页之前的页面中,无需提及他们的
标签名称。说:

/pages/author/copyright/lastUpdate.


表达式应该说:

选择 Home 之前的所有页面节点,或者,全选
Home 之前的初步节点。

任何指南将不胜感激。

最佳答案

您可以使用 preceding-sibling为此目的的轴:

/pages/Home/preceding-sibling::*

the preceding-sibling axis contains all the preceding siblings of the context node; if the context node is an attribute node or namespace node, the preceding-sibling axis is empty. [XPath 1.0 spec]

关于xml - xpath 仅获取初步节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30971124/

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