BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Jagadishkatam
Amethyst | Level 16

Dear Expert,

 

Could you please help me concatenate every nth word with a symbol.

 

Consider that i have a string data like below

 

"having a common variable to merge by ensures that the"

 

the expected output should be

 

"having a common * variable to merge * by ensures that * the"

 

So after every 3rd word i have to place the symbol(*). like above.

 

Could you please suggest a solution.

 

Thanks,

Jag

Thanks,
Jag
1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

Put the CATx functions to good use:

 

data test;
length subStr outStr $200;
inStr = "having a common variable to merge by ensures that the";
do i = 1 by 3 until(Missing(subStr));
    subStr = catx(" ", scan(inStr,i), scan(inStr,i+1), scan(inStr,i+2));
    outStr = catx(" * ", outStr, subStr);
    end;
drop subStr i;
run;

proc print data=test noobs; run;
PG

View solution in original post

4 REPLIES 4
PGStats
Opal | Level 21

Put the CATx functions to good use:

 

data test;
length subStr outStr $200;
inStr = "having a common variable to merge by ensures that the";
do i = 1 by 3 until(Missing(subStr));
    subStr = catx(" ", scan(inStr,i), scan(inStr,i+1), scan(inStr,i+2));
    outStr = catx(" * ", outStr, subStr);
    end;
drop subStr i;
run;

proc print data=test noobs; run;
PG
Jagadishkatam
Amethyst | Level 16
Thank you so much PG , it worked
Thanks,
Jag
Haikuo
Onyx | Level 15

Here is another way:

 

data test;
length outStr $200;
inStr = "having a common variable to merge by ensures that the";
outstr=prxchange('s/((\w+ ){3})/$1* /', -1, instr);
run;

This is to tell SAS adding * right after the 3rd word, in a literal sense. 

Jagadishkatam
Amethyst | Level 16
Thank you Haikuo it was wonderful.
Thanks,
Jag

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 2011 views
  • 3 likes
  • 3 in conversation