为什么我会收到此错误?
“路径中的非法字符”
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