My purpose is to collect the result links after searching a keyword from google instead of click and browse. I can successfully collect data in a static website like example 3 below. filename foo url 'http://support.sas.com/techsup/service_intro.html'; data _null_; infile foo length=len; input record $varying200. len; put record $varying200. len; if _n_=15 then stop; run; However, if I put a google search page after url, I can't get the result links. filename foo url "http://www.google.co.jp/?gws_rd=cr#bav=on.2,or.&fp=4d59ced19cf73e3&q=sas%2Btraining" ; ; data _null_; infile foo length=len; input record $varying200. len; put record $varying200. len; if _n_=15 then stop; run; Thank you for your help.
... View more