BookmarkSubscribeRSS Feed
Ksharp
Super User

No need macro.

Perl Regular Expression is more than suffice.

 

%let kept=Arne Bert Hansi;

%let want1=%str(%')%qsysfunc(prxchange(s/\s+/','/,-1,&kept.))%str(%');
%let want2=%str(%')%qsysfunc(prxchange(s/\s+/' '/,-1,&kept.))%str(%');
%put &=want1.;
%put &=want2.;


%let want3="%sysfunc(prxchange(s/\s+/"%str(,)"/,-1,&kept.))";
%let want4="%sysfunc(prxchange(s/\s+/" "/,-1,&kept.))";
%put &=want3.;
%put &=want4.;
1    %let kept=Arne Bert Hansi;
2
3    %let want1=%str(%')%qsysfunc(prxchange(s/\s+/','/,-1,&kept.))%str(%');
4    %let want2=%str(%')%qsysfunc(prxchange(s/\s+/' '/,-1,&kept.))%str(%');
5    %put &=want1.;
WANT1='Arne','Bert','Hansi'
6    %put &=want2.;
WANT2='Arne' 'Bert' 'Hansi'
7
8
9    %let want3="%sysfunc(prxchange(s/\s+/"%str(,)"/,-1,&kept.))";
10   %let want4="%sysfunc(prxchange(s/\s+/" "/,-1,&kept.))";
11   %put &=want3.;
WANT3="Arne","Bert","Hansi"
12   %put &=want4.;
WANT4="Arne" "Bert" "Hansi"

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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
  • 15 replies
  • 2595 views
  • 8 likes
  • 10 in conversation