Hello everyone,
How to deal with string to keep only numeric and comma?
such as %let a=asd1,2,ggg3,678,thy%@#@;
I just need b=1,2,3,678
Thanks;
data one;
a="asd1,2,ggg3,678,thy%@#@;";
b=somefunction(a,'0123456789,');
run;
Try Compress, keep an eye on the modifiers, specifically k and d.
data one;
a="asd1,2,ggg3,678,thy%@#@;";
b=compress(a,',','dk');
run;
proc print;run;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.