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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 4 replies
  • 1128 views
  • 3 likes
  • 3 in conversation