@cxyu1 Infile cards that I used is merely a demonstration that gives you an idea.So yes, the idea is to use a datastep to import your raw data into sas dataset using infile and input precisely list input.
For your raw txt file, the code could like like
infile 'raw_file' ;
input
----------- and so on
... View more