我是Swift新手。我需要类似Swift iOS项目中Python的BeautifulSoup之类的东西。准确地说,我需要将所有这些都href以<a>结尾".txt"。我应该采取什么步骤?
3 回答
肥皂起泡泡
TA贡献1829条经验 获得超6个赞
尝试SwiftSoup,这是jsoup到Swift的端口。
let html: String = "<a id=1 href='?foo=bar&mid<=true'>One</a> <a id=2 href='?foo=bar<qux&lg=1'>Two</a>";
let els: Elements = try SwiftSoup.parse(html).select("a");
for element: Element in els.array(){
print(try element.attr("href"))
}
- 3 回答
- 0 关注
- 693 浏览
相关问题推荐
添加回答
举报
0/150
提交
取消