LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (June 2001, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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;


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