gpt4 book ai didi

ruby - 我将如何从 anchor 列表中搜索 `/aems/dic/list`?

转载 作者:行者123 更新时间:2023-12-04 16:20:06 24 4
gpt4 key购买 nike

我有以下代码,它是 html 的一部分:

<td><a href="http://youtube.com">YouTube</a></td>
<td><a data-category="news" href=http://kathack.com/party/aems/dic/list">Reddit</a></td>
<td><a href="http://kathack.com/party/aems">Kathack</a></td>
<td><a data-category="news" href="http://www.nytimes.com">New York Times</a></td>

现在我将如何搜索 /aems/dic/list并获取完整的 url 存储?

最佳答案

所以,与 nokogiri ,像这样:

fragment = Nokogiri::HTML::DocumentFragment.parse text
fragment.css("a").each do |link|
href = link['href']
return href if href =~ /\/aems\/dic\/list/
end

关于ruby - 我将如何从 anchor 列表中搜索 `/aems/dic/list`?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14429687/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com