Hi,
Is there a work around that I can use just one tranwrd function to replace all the special charaters in the string. I'm using below code to replace word by word using multiple variable.
data demo;
string='run along&the$wall#mister miller';
newstring1=tranwrd(string,'#',' ');
newstring2=tranwrd(newstring1,'&',' ');
newstring3=tranwrd(newstring2,'$',' ');
run;Thanks.
Try TRANSLATE instead.
Try TRANSLATE instead.
Combine the translate function with the compress function. Use the modifiers for the compress function to tell it which characters you DON'T want to turn into spaces.
data test;
string='run along&the$wall#mister miller';
new_string=translate(string,' ',compress(string,,'ad'));
put string $char100. / new_string $char100. ;
run;
run along&the$wall#mister miller run along the wall mister miller
you can use prxchange too
data demo;
string='run along&the$wall#mister miller';
string1= prxchange('s/&|\$|#/ /', -1, string);
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 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.