Hi, I am using SAS 9.3.
Does anyone have suggestions to resolve the following issue?
Now, I have one variable recorded as: Birthday Sex Height Weight
and the expected result is: Birthday, Sex, Height, Weight
JC
data x;
x='Birthday Sex Height Weight';
y=prxchange('s/\s+/, /',-1,strip(x));
run;
proc print;run;
data x;
x='Birthday Sex Height Weight';
y=prxchange('s/\s+/, /',-1,strip(x));
run;
proc print;run;
It works. Thank for your help!
Is 's/\s+/,/' fixed?
Can I use PRXCHANGE in macro? Perhaps, %let a=%sysfunc(prxchange('s/\s+/,/',-1,strip(x))); ?
JC
Yes.I add a white blank after comma.
%let x=sex weight height;
%let a=%sysfunc(prxchange(%str(s/\s+/, /),-1,&x));
%put &a ;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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 save with the early bird rate—just $795!
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.
Ready to level-up your skills? Choose your own adventure.