我想从网页中提取特定链接,使用 Nokogiri 通过其文本搜索它:
<div class="links">
<a href='http://example.org/site/1/'>site 1</a>
<a href='http://example.org/site/2/'>site 2</a>
<a href='http://example.org/site/3/'>site 3</a>
</div>
我想要“站点 3”的 href 并返回:
http://example.org/site/3/
或者我想要“站点 1”的 href 并返回:
http://example.org/site/1/
我该怎么做?