BookmarkSubscribeRSS Feed
akberali67
Calcite | Level 5

Is there a way to readin a raw file by delimiter or is a line by line read-in the only option. Because I have split lines with quite weird scenarios.

A               B               C

1               2                3

1              

3               6

1               5              

8

It should have been

A               B               C

1               2               3

1               3               6

1               5               8

Please help!

3 REPLIES 3
manojinpec
Obsidian | Level 7

Not sure whether it is possible or not..

Hima
Obsidian | Level 7

data have;
input a b c;
cards;
1               2                3
1              
3               6
1               5              
8
;
run;

proc print; run;

Output:

                                       Obs    a    b    c

                                        1     1    2    3
                                        2     1    3    6
                                        3     1    5    8


Ksharp
Super User

I think you should post some more sample data to clarify your question.

filename x 'c:\x.txt';
data want(keep=a b c);
 infile x end=last;
 input;
 length row $ 256 ;
 retain row;
 row=catx(' ',row,_infile_);
 if countw(row)=3 then do;
                         a=scan(row,1);b=scan(row,2);c=scan(row,3);
                         output;
                         call missing(row);
                        end;
  else if last then do;
                         a=scan(row,1);b=scan(row,2);c=scan(row,3);
                         output;
                     end;
run;


Ksharp

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 810 views
  • 0 likes
  • 4 in conversation