使用 JRuby(Hpricot?)使用等标签解析 XML
我试图在 JRuby 中使用一些带有如下元素的遗留 XML:
<x-doc attr="value">
<nested>
<with.dot>content</with.dot >
</nested>
</x-doc>
我一直在使用 Hpricot,但 Hpricot 的面向 HTML 的快捷方式对我不利:doc.search("//with.dot")
似乎正在寻找
(几年前我也用 JQuery 遇到了这个问题。)
我可以用 Hpricot 来做到这一点吗?或者我需要使用不同的库吗?
I'm trying to consume some legacy XML with elements like this in JRuby:
<x-doc attr="value">
<nested>
<with.dot>content</with.dot >
</nested>
</x-doc>
I've been working with Hpricot, but Hpricot's HTML-oriented shortcuts are working against me: doc.search("//with.dot")
seems to be looking for <with class="dot" />
(I ran into this problem with JQuery too, a few years ago.)
Can I do this with Hpricot, or do I need to use a different library?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 nokogiri。它被称为“更快、更好的 Ruby HTML 和 XML 解析器(比 Hpricot)”。
Check out nokogiri. It's said to be "A Faster, Better HTML and XML Parser for Ruby (than Hpricot)".