Qiao克力舞后 发表于 2013-7-23 13:24 
如果是外部文件导入那?不是手动输入?
用 infile 语句指定数据文件, 然后用 input .
Suppose that you have text file Mydata.txt and
the first line has variavle names, the following code starts input from the second line (firstobs=2).
See sas base tutorial or "The little sas book" for details.
data test;
infile "F:\MySAS\Mydata.txt" firstobs=2;
length string $50.;
input string $;
put string=;
run;