gpt4 book ai didi

xml - 在 Ruby 中解析 XML 文档

转载 作者:数据小太阳 更新时间:2023-10-29 01:47:26 24 4
gpt4 key购买 nike

我正在使用 REXML 库。

<foo>
<baa>value<baa>
<foo>

我想得到属于咩的值。

如何编码?

最佳答案

试试这个

require 'rexml/document'doc = REXML::Document.new File.new('mydoc.xml')doc.elements('*/foo/baa') { |element| puts element.get_text }

我自己更喜欢 Nokogiri 和 Hpricot gem 。如果需要,您可以尝试一下。

关于xml - 在 Ruby 中解析 XML 文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1067434/

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