如何使用 Hpricot 删除 div 内的特定内容

发布于 2024-11-11 16:57:09 字数 481 浏览 4 评论 0原文

我有以下 html 结构

  <div id="rn_answertext">
    <p>asdasdasdas</p>
    <p>asdasdasdas</p>
    <p>asdasdasdas</p>
    <h3>asdasdasdas</h3>
    <div id="test">Content to be excluded</div>
  </div>

我需要的是,当我搜索 div id="rn_answertext" 时,我需要获取除 id=test 的 div 中的所有内容之外

我当前的代码是

  result = doc.search("div#rn_answertext").inner_html

任何人请帮忙。

I have the following html structure

  <div id="rn_answertext">
    <p>asdasdasdas</p>
    <p>asdasdasdas</p>
    <p>asdasdasdas</p>
    <h3>asdasdasdas</h3>
    <div id="test">Content to be excluded</div>
  </div>

What I need is, when I search for div id="rn_answertext" I need to get all the contents except that in the div with id=test

My current code is

  result = doc.search("div#rn_answertext").inner_html

Anyone please help.

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

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

发布评论

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

评论(2

自在安然 2024-11-18 16:57:10

div = doc.search("//div[@id='rn_answertext']")

div.search('//div[@id="test"]').remove.html

将为您提供 rn_answertext div 内容,除了测试分区

div = doc.search("//div[@id='rn_answertext']")

div.search('//div[@id="test"]').remove.html

Will give you the rn_answertext div content except test div.

小耗子 2024-11-18 16:57:10

首先获取您想要的 div,然后找到您想要删除的 div:

div = (doc/"div#rn_answertext")
(div/"#test").remove
puts div.to_s

First get the div you want, then find the div inside you'd like to remove:

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