Hpricot:如何在没有其他 html 子元素的情况下提取内部文本
我正在开发一个 vim rspec 插件(https://github.com/skwp/vim-rspec) - 我正在从 rspec 解析一些 html。它看起来像这样:
doc = %{
<dl>
<dt id="example_group_1">This is the heading text</dt>
Some puts output here
</dl>
}
我可以获取 using 的整个内部:
(Hpricot.parse(doc)/:dl).first.inner_html
我可以通过 using 只获取 dt
(Hpricot.parse(doc)/:dl).first/:dt
但是如何访问“此处的一些输出”区域?如果我使用inner_html,则有太多其他垃圾需要解析。我浏览了 hpricot 文档,但没有看到一种简单的方法来获取 html 元素的内部文本,而忽略它的 html 子元素。
I'm working on a vim rspec plugin (https://github.com/skwp/vim-rspec) - and I am parsing some html from rspec. It looks like this:
doc = %{
<dl>
<dt id="example_group_1">This is the heading text</dt>
Some puts output here
</dl>
}
I can get the entire inner of the using:
(Hpricot.parse(doc)/:dl).first.inner_html
I can get just the dt by using
(Hpricot.parse(doc)/:dl).first/:dt
But how can I access the "Some puts output here" area? If I use inner_html, there is way too much other junk to parse through. I've looked through hpricot docs but don't see an easy way to get essentially the inner text of an html element, disregarding its html children.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我最终通过手动解析孩子们自己找出了一条路线:
I ended up figuring out a route by myself, by manually parsing the children:
请注意,这是错误的 HTML。如果您可以控制它,则应该将所需的内容包装在
在 XML 术语中,您要查找的是
但是,如果您必须使用 Hpricot,并且无法使用它选择文本节点,那么您可以通过获取
inner_html
然后删除不需要的内容来破解此问题:Note that this is bad HTML you have there. If you have control over it, you should wrap the content you want in a
<dd>
.In XML terms what you are looking for is the TextNode following the
<dt>
element. In my comment I showed how you can select this node using XPath in Nokogiri.However, if you must use Hpricot, and cannot select text nodes using it, then you could hack this by getting the
inner_html
and then stripping out the unwanted: