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.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
  • 2 replies
  • 303 views
  • 0 likes
  • 2 in conversation