我正在尝试解析包含许多表的PHP页面。现在当我尝试选择那些表时,集合返回null?
Dim web As New HtmlAgilityPack.HtmlWeb()
Dim htmlDoc As HtmlAgilityPack.HtmlDocument = web.Load("URL")
Dim html As String
Dim tabletag As HtmlNodeCollection = htmlDoc.DocumentNode.SelectNodes("//table")
Dim tableNode As HtmlNode = htmlDoc.DocumentNode.SelectSingleNode("//table[@summary='List of services']")
If Not tabletag Is Nothing Then
html = tableNode.InnerText
End If
这个页面肯定有一些表,只是不明白为什么它为它返回null?
答案 0 :(得分:0)
我在浏览器中加载了您的URL并查看了源代码,实际上我找不到任何表格。错误的网址?