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
תודה רבה שמואל
עבד מעולה
יום טוב ובריאות איתנה

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1982 views
  • 0 likes
  • 2 in conversation