Google の検索結果を抽出したい
のですが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