编码新手,如果这很简单,那么我就饶了我。我正试图从swift的网页上下载文本,比如从新闻文章,维基百科或其他东西。我可以获取HTML或JSON,但我无法将文本提取为字符串。谢谢!
答案 0 :(得分:0)
示例:
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("")
}