我想提取谷歌搜索结果,
我正在使用Google.API.Search
,
我试图通过这段代码提取结果:
Dim client As New GwebSearchClient("http://www.google.co.il")
Dim results As IList(Of IWebResult) = client.Search("test", 64)
For Each result As IWebResult In results
ListBox1.Items.Add(result.Url)
Next
Me.Text = ListBox1.Items.Count
此代码部分
工作
,结果限制为64 个结果。
我想获得 400 个结果,
还有另一种方法可以从 google 获得结果吗?
(我不喜欢使用Google.API.Search
,也许通过“正则表达式”得到结果)
我喜欢任何其他方式。