G Guest Jun 1, 2005 #1 is there a way to insert a google page into my application and parse it into xml without using the google api kit?
is there a way to insert a google page into my application and parse it into xml without using the google api kit?
S Steve Walker Jun 1, 2005 #2 oforia said: is there a way to insert a google page into my application and parse it into xml without using the google api kit? Click to expand... See the "why would anyone want XHTML" thread ) Depending on the type of application you are writing, you could either parse the HTML as text using regexps or load it into IE and navigate the DOM using this approach: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_vstec hart/html/vsgrfWalkthroughAccessingDHTMLDOMFromC.asp In both cases you will be vulnerable to Google changing the design of the page; the page is not an API...
oforia said: is there a way to insert a google page into my application and parse it into xml without using the google api kit? Click to expand... See the "why would anyone want XHTML" thread ) Depending on the type of application you are writing, you could either parse the HTML as text using regexps or load it into IE and navigate the DOM using this approach: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_vstec hart/html/vsgrfWalkthroughAccessingDHTMLDOMFromC.asp In both cases you will be vulnerable to Google changing the design of the page; the page is not an API...