/* * Richard A. DeVenezia * * Jan 16, 2004 - See SAS-L thread [Reading the data from the Internet] */ %let url = http://10xgroup.com/indc/?id=indc_nagp_report#top; %let headings = Region.Hub High Low Wtd.Avg.Index Change Daily.Volume No..of.Trades No..of.Companies Delivery.Point; filename webdata pipe "perl \\Extreme\samples\table-extract.pl.txt &url ""&headings."""; * see what is out there; data _null_; infile webdata; input; put _infile_; run; * add the real data step to create data set from what is out there;