我正在尝试使用 Nokogiri 来提取两个独特标签集之间的文本。
在 and之间获取 p-tag 中的文本,然后在<h2 class="point">The problem</h2>
and之间获取所有 HTML 的最佳方法是什么?<h2 class="point">The solution</h2>
<h2 class="point">The solution</h2>
<div class="frame box sketh">
完整的 html 示例:
<h2 class="point">The problem</h2>
<p>TEXT I WANT </p>
<h2 class="point">The solution</h2>
HTML I WANT with it's own set of tags (but never an <h2> or <div>)
<div class="frame box sketh"><img src="URL for Image I want later" alt="" /></div>
谢谢!