BookmarkSubscribeRSS Feed
thanikondharish
Calcite | Level 5
Data EX;
Name='jhonson Peter clerk audits cinema movie running';
Run;
I have one data set ex now I want to split 10. Letters but the word should be full like
Length 10----> Johnson pe
So the above condition splitting the Peter so pe is coming in this case we should take only Johnson word.
Next continue the 10 length word so the next new variable columns has 'peter clerk' like that
So how
to do above scenario
5 REPLIES 5
PeterClemmensen
Tourmaline | Level 20

What does your desired result look like? Do you want an observation for each split or?

PeterClemmensen
Tourmaline | Level 20

Ok. Do you have more than one observation in your actual EX Data set?

Ksharp
Super User
Data EX;
Name='jhonson Peter clerk audits cinema movie running';
Run;
data want;
 set ex;
 length want _want $ 100;
 do i=1 to countw(name,' ');
   temp=scan(name,i,' ');
   _want=want;
   want=catx(' ',want,temp); 
   if length(want)>11 then do;want=_want;output;want=temp;end;
 end;
 output;
 drop temp _want i;
 run;
Astounding
PROC Star

Give an example of what you want if you have a name like "Bartholomew" instead of "Peter" ... something that is longer than 10 characters in a single word.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

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
  • 5 replies
  • 826 views
  • 0 likes
  • 4 in conversation