我有一些 HTML:
<hr noshade>
<p><a href="#1">Some text here</a></p>
<p style="margin-top:0pt;margin-bottom:0pt;line-height:120%;"><span style="color:#000000;font-weight:bold;">This is some description</span></p>
<hr noshade> <!-- so <hr noshade> is the delimiter for me -->
<p><a href="#2">Some more text here</a></p>
<p style="margin-top:0pt;margin-bottom:0pt;line-height:120%;"><span style="color:#000000;font-weight:bold;">This is description for some more text</span></p>
<hr noshade>
在使用 nokogiri 进行解析时,我想在由我自己的 delimiter 分隔的每组标签之间打印信息<hr noshade>
。因此,第一个块应该打印位于两个hr noshade
标签之间的所有“p”标签之间的信息,依此类推。