Hi ,
i have to read an unstructured data from a text file to SAS dataset
raw data like below:
filename x 'c:\temp\test.txt' encoding='utf8' termstr=crlf;
data have;
infile x dlm='09'x dsd;
input @;
if anydigit(_infile_) ne 1 then delete;
input (accountno date current_balance credit debit total_bal) (: $40.);
run;
filename x 'c:\temp\test.txt' encoding='utf8' termstr=crlf;
data have;
infile x dlm='09'x dsd;
input @;
if anydigit(_infile_) ne 1 then delete;
input (accountno date current_balance credit debit total_bal) (: $40.);
run;
/*OK. Using liternal name syntax.*/
option validvarname=any; *Make sure variable name could contain blanks;
filename x 'c:\temp\test.txt' encoding='utf8' termstr=crlf;
data have;
infile x dlm='09'x dsd;
input @;
if anydigit(_infile_) ne 1 then delete;
input ('account no'n date current_balance credit debit total_bal) (: $40.);
run;
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Early bird rate extended! Save $200 when you sign up by March 31.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.