| Date: | Fri, 3 Apr 1998 15:55:09 -0600 |
| Reply-To: | John McKown <joarmc@PRODIGY.NET> |
| Sender: | "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU> |
| From: | John McKown <joarmc@PRODIGY.NET> |
| Organization: | Prodigy Services Corp |
| Subject: | Re: Tab-delimited input file |
|---|
I think you'd use the following:
INFILE file-specification DLM='09'X; /* '09'X is an ASCII TAB */
INPUT var1 $ var2;
Assuming you have two variables, the first of which is character, the second
of which is numeric.
|