如何使用 Nokogiri 获取没有嵌套元素的内容

发布于 2024-10-12 06:18:01 字数 385 浏览 4 评论 0原文

src = '<paragraph>And bla foo <note>not important</note> bar baz</paragraph>'
doc = Nokogiri::XML(src)
puts doc.xpath('paragraph').first.content

上面的代码返回:

"And bla foo not important bar baz"

我正在寻找一种无需嵌套元素即可获取内容的方法。 上面的情况只是一个示例 XML,但在这个示例中我想要这样的结果:

"And bla foo bar baz"
src = '<paragraph>And bla foo <note>not important</note> bar baz</paragraph>'
doc = Nokogiri::XML(src)
puts doc.xpath('paragraph').first.content

The code above returns:

"And bla foo not important bar baz"

I am looking for a way to get content without nested elements.
The case above is just an example XML, but in this example I want this as a result:

"And bla foo bar baz"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半山落雨半山空 2024-10-19 06:18:01
puts doc.xpath('paragraph/child::text()')

我已经很多年没有在愤怒中使用 XPath 了,但这似乎很有效。

或者更好的是:

puts doc.xpath('paragraph/child::text()').to_s.squeeze(' ')
puts doc.xpath('paragraph/child::text()')

I've not used XPath in anger for many years but that seems to work.

Or better yet:

puts doc.xpath('paragraph/child::text()').to_s.squeeze(' ')
手长情犹 2024-10-19 06:18:01

你可以做类似的事情

doc.xpath('paragraph').children.map { |e| e.text if e.text? }.join

,这将从你的示例中返回“And bla foo bar baz”

You could do something like

doc.xpath('paragraph').children.map { |e| e.text if e.text? }.join

That will return 'And bla foo bar baz' from your example

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文