LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (May 1997, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Sat, 17 May 1997 16:51:51 GMT
Reply-To:   vhyu <erols.com@POP.EROLS.COM>
Sender:   "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From:   vhyu <erols.com@POP.EROLS.COM>
Organization:   Victoria & Hsiwei Yu
Subject:   many ascii files
Content-Type:   text/plain; charset=us-ascii

news:199705161924.QAA05930@gauss.dma.uem.br

Hi Josmar,

The languague reference manual on INFILE statement FILEVAR option has sample codes for what you need.

Following the manual example, here's demo

data _null_; file print notitle; input Dos_Name $50.;

infile Dos_Name filevar= Dos_Name end= EOF; /* Dos_Name and filevar */

put 'Beginning of file ' Dos_Name; do until ( EOF );


Back to: Top of message | Previous page | Main SAS-L page