BookmarkSubscribeRSS Feed
Valentin_HU
Calcite | Level 5
Hi there,
I'm not sure if this is the right place for this post, if not I'm sorry!
I have the following problem:
My data looks like that (simplified):
Text group
text1 1
text2 1
text3 1
text4 1
text1 2
text2 2
text1 3
text2 3
text3 3

Now I want to concatenate the strings in 'Text' for each group so that the data looks like that:

Text group
text1_text2_text3_text4 1
text1_text2 2
text1_text2_text3 3

Can anyone help me with this? Another question here is the maximal length of a string variable.

Thanks!

Valentin
1 REPLY 1
SPR
Quartz | Level 8 SPR
Quartz | Level 8
Hello Vvalentin_HU,

This is a solution:
[pre]
data i;
input Text $ group;
datalines;
text1 1
text2 1
text3 1
text4 1
text1 2
text2 2
text1 3
text2 3
text3 3
run;
data r;
retain t;
length t $100;
set i;
if First.group then t="";
t=CATX('_',t,text);
if Last.group then output;
by group;
keep t group;
run;
[/pre]
Sincerely,
SPR

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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
  • 1 reply
  • 2207 views
  • 0 likes
  • 2 in conversation