gpt4 book ai didi

html - 如何使用 Swift 从网站检索文本

转载 作者:行者123 更新时间:2023-11-30 12:49:44 26 4
gpt4 key购买 nike

编码新手,如果这很简单,请饶过我。我正在尝试快速从网页下载文本,例如新闻文章、维基百科或其他内容。我可以获取 HTML 或 JSON,但无法将文本提取为字符串。谢谢!

最佳答案

尝试SwiftSoup

示例:

do{
let html = "<html><head><title>First parse</title></head>"
+ "<body><p>Parsed HTML into a doc.</p></body></html>"
let doc: Document = try SwiftSoup.parse(html)
return try doc.text()
}catch Exception.Error(let type, let message)
{
print("")
}catch{
print("")
}

关于html - 如何使用 Swift 从网站检索文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41152628/

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