I want to extract google search result,
I'm using the Google.API.Search
,
I tried to extract result by this code:
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
This code works partially
the result is limited to 64 results.
i want to get 400 results,
there is another way to get result from google?
(I prefer not using the Google.API.Search
, maybe get the result by "regex")
I'd love any other way.