Question : google suggestion scraper

i want scrape a keywords from google suggestion
Attachments:

Answer : google suggestion scraper

I don't know exactly what your meaning of scrapping means but if you want to bring the results to your vb.net application.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
Dim xmlDocObj As XmlDocument = Nothing
        Try
            xmlDocObj = New XmlDocument
            xmlDocObj.Load("http://client5.google.com/complete/search?hl=en-us&q=pontiac gx&client=ie8&inputencoding=UTF-8&outputencoding=UTF-8")
            Dim nodeList As XmlNodeList = xmlDocObj.GetElementsByTagName("Text")
            For Each item As XmlElement In nodeList
                Debug.Print(item.InnerText)
            Next
        Catch ex As Exception
            MsgBox(ex.Message)
        End Try
Random Solutions  
 
programming4us programming4us