BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
meiryem
Calcite | Level 5
Helow
I have a data like this
C1, c2, c3 ,c4
1, 22, . , .
35 ,765 ,4
1 ,677,.,.
2, 5 ,3 ,7
And i iwant to concatenate with seperator - like this
M1 m2 m3 m4
1 ,1-22. . ,.
35 .35-765. 35-765-4. .
1 ,1-677
2, 2-5 ,2-5-3 ,2-5-3-7
How can i do it with array and do stetment
Tanks for your help
Meir
1 ACCEPTED SOLUTION

Accepted Solutions
Shmuel
Garnet | Level 18

data want(keep=m1-m4);

 set have;

       length m1-m4 $30;  /* adapt to max length needed */

       array cx {4} c1-c4;   /* input data */

       array mx {4} m1-m4; /* calulated for output */

       do i=1 to dim(cx);

            if i=1 then m1 = c1; else m(xi) = catx('-',mx(i-1),cx(i));

       end;

run;

View solution in original post

2 REPLIES 2
Shmuel
Garnet | Level 18

data want(keep=m1-m4);

 set have;

       length m1-m4 $30;  /* adapt to max length needed */

       array cx {4} c1-c4;   /* input data */

       array mx {4} m1-m4; /* calulated for output */

       do i=1 to dim(cx);

            if i=1 then m1 = c1; else m(xi) = catx('-',mx(i-1),cx(i));

       end;

run;

meiryem
Calcite | Level 5
תודה רבה שמואל
עבד מעולה
יום טוב ובריאות איתנה

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

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

View all other training opportunities.

Discussion stats
  • 2 replies
  • 199 views
  • 0 likes
  • 2 in conversation