gpt4 book ai didi

xml - 具有 parent 其他 child 条件的子元素的 XPath?

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

我想找出 XML 代码的 XPath 查询,其中嵌套了要检查条件(是否等于例如“纽约”)的元素,即 city 并且所需元素,即 bprice 未嵌套。

这是 XML 代码:

<book>
<btitle>The Inferno</btitle>
<bprice currency = "dollars">19.99</bprice>
<bdate>2013-05-14</bdate>
<authorinfo>
<lastname>Brown</lastname>
<midname>G.</midname>
<firstname>Dan</firstname>
</authorinfo>
<publisherinfo>
<publishername>Doubleday</publishername>
<street>1745 Broadway</street>
<city>New York</city>
<zip>11119</zip>
<country>USA</country>
</publisherinfo>
</book>

最佳答案

这个 XPath,

/book[publisherinfo/city = 'New York']/bprice

将选择 book 元素中的 bprice 元素,其 publisherinfo/city 元素的字符串值为 "New York",根据要求。

关于xml - 具有 parent 其他 child 条件的子元素的 XPath?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40353489/

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