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;
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 lock in 2025 pricing—just $495!
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.