| Date: | Wed, 20 Jun 2001 10:30:23 +0000 |
| Reply-To: | Jens Manfredson <HFUOQUCSVTYY@SPAMMOTEL.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Jens Manfredson <HFUOQUCSVTYY@SPAMMOTEL.COM> |
| Organization: | Nikoma Mediaworks GmbH |
| Subject: | Re: Reading varying length record with datalines |
| Content-Type: | text/plain; charset="iso-8859-1" |
> Var1 Var2
> ---------------------------
> house My house is my castle.
> cat It is raining cats and dogs
>
> and want to read them from datalines in one step.
data test;
infile cards;
input a $char8. b $char30.;
put a= b=;
cards;
house My house is my castle.
cat It is raining cats and dogs
;
run;
|