| 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 );
|