1

为什么我会收到此错误?

“路径中的非法字符”在htmlDoc.Load(pageSource)

pageSource是 HTML 页面的字符串变量。我需要将页面源作为字符串传递,而不是作为文件而不是作为 URL。我该怎么做呢?

Dim ids As New List(Of String)()
Dim pageSource = getHtml(url)

Dim htmlDoc As HtmlDocument = New HtmlDocument()

htmlDoc.OptionFixNestedTags = True


htmlDoc.Load(pageSource)


Dim s As HtmlNodeCollection = htmlDoc.DocumentNode.SelectNodes("//div/@id")

For Each div As HtmlNode In s
    ids.Add(div.Id)
Next
4

1 回答 1

9

使用LoadHtml代替Load

htmlDoc.LoadHtml(pageSource)

另请参阅来源。

于 2012-07-21T04:33:43.890 回答