使用 JRuby(Hpricot?)使用等标签解析 XML

发布于 2024-08-04 18:24:23 字数 400 浏览 8 评论 0原文

我试图在 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 技术交流群。

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

发布评论

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

评论(1

梦回旧景 2024-08-11 18:24:23

查看 nokogiri。它被称为“更快、更好的 Ruby HTML 和 XML 解析器(比 Hpricot)”。

Check out nokogiri. It's said to be "A Faster, Better HTML and XML Parser for Ruby (than Hpricot)".

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