gpt4 book ai didi

ruby - Nokogiri 支持哪个版本的 xpath?

转载 作者:太空宇宙 更新时间:2023-11-03 16:09:15 24 4
gpt4 key购买 nike

我找不到Nokogiri支持的xpath版本的官方说明。任何人都可以帮助我吗?事实上,我想提取一些具有以指定子字符串开头的属性的元素。例如,我想获取所有具有 category 属性且以字符 C 开头的 Book 元素。如何使用 nokogiri 做到这一点?

<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- Edited by XMLSpy?-->
<bookstore>

<book category="COOKING">
<title lang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
<price>30.00</price>
</book>

<book category="CHILDREN">
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>

<book category="WEB">
<title lang="en">XQuery Kick Start</title>
<author>James McGovern</author>
<author>Per Bothner</author>
<author>Kurt Cagle</author>
<author>James Linn</author>
<author>Vaidyanathan Nagarajan</author>
<year>2003</year>
<price>49.99</price>
</book>

<book category="WEB">
<title lang="en">Learning XML</title>
<author>Erik T. Ray</author>
<year>2003</year>
<price>39.95</price>
</book>

</bookstore>

最佳答案

我不知道Nokogiri 支持哪个特定版本的XPath。但是,您可以这样做:

I want to get all book elements that have a category attribute start with the character C.

使用 XPath 的 starts-with :

doc = Nokogiri::XML(your_xml)
doc.search('//book[starts-with(@category, "C")]').each { |e| puts e['category'] }
# output is:
# COOKING
# CHILDREN

您还可以使用 CSS3 "begins with" selector :

doc = Nokogiri::XML(your_xml)
doc.search('book[category^=C]').each { |e| puts e['category'] }
# output is:
# COOKING
# CHILDREN

关于ruby - Nokogiri 支持哪个版本的 xpath?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7199463/

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