hpricot 解析问题

发布于 2024-09-10 11:45:07 字数 531 浏览 5 评论 0原文

我有一个如下所示的 XML:

<data>
  <image src="http://www.someweb.com/something.png"/>
</data>

What is the right way to use hpricot to extact just 'http:// /www.someweb.com/something.png'?我能得到的最接近的是这个......

>>(doc/"image").first
=> {emptyelem <image src="http://www.someweb.com/something.png">}

我已经阅读了 github 上的 hpricot README 并用谷歌搜索,但还没有找到任何东西。预先感谢您的任何答复!

I have an XML that looks like this:

<data>
  <image src="http://www.someweb.com/something.png"/>
</data>

What is the correct way to use hpricot to extact just 'http://www.someweb.com/something.png'? The closest I can get is this...

>>(doc/"image").first
=> {emptyelem <image src="http://www.someweb.com/something.png">}

I've read the hpricot README on github and googled, but haven't found anything yet. Thanks in advance for any answers!

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

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

发布评论

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

评论(1

九八野马 2024-09-17 11:45:07
(doc/'data image').first.attributes['src']
(doc/'data image').first.attributes['src']
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文