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

sas-innovate-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


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
  • 1664 views
  • 3 likes
  • 3 in conversation