BookmarkSubscribeRSS Feed
Sakthivel_Saran
Calcite | Level 5

Hi,

I have space delimited text file with spaces between two names. I want to use the infile option with delimiter as space and keep the name in the same column. Here is a snippet of the code I am having.

 

Agoura Hills  21127  290  290  0  3  5  48  64  155  15  0

and so on.

 

Thanks in advance.

2 REPLIES 2
Astounding
PROC Star

There is one characteristic of the data that determines whether this is easy or difficult.  If you have two spaces after the name(s) instead of one, the problem is simple:

 

data want;

infile rawdata;

length place $ 20;

input place & var1 var2 var3 ....;

run;

 

Some short but relatively complex programming can handle the situation if there is only one space after the name(s).

Patrick
Opal | Level 21

@Sakthivel_Saran

Based on what you've posted the delimiter is a string of two consecutive blanks. If this is true then the following code should work:

data sample;
  infile datalines truncover dlmstr='  ' dsd;
  input @;
  input name :$20. numvar1-numvar11;
datalines;
Agoura Hills  21127  290  290  0  3  5  48  64  155  15  0
Agoura  21127  290  290  0  3  5  48  64  155  15  0
;
run;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 12860 views
  • 0 likes
  • 3 in conversation