* WebLog Example Read lines from a server web log. Use the colon modifier and the @'chars' pointer.; data weblog; infile 'c:/datasets/samplelog.txt' firstobs=5; input date YYMMDD10. time TIME8. @44 ip_addr :$16. @'GET' file :$55.; proc print; format date MMDDYY. time TIME8.; run; quit;