Hello
I have a variable called Degree. It has various values such as:
MD
NP
PA
MD-PHD
MD PHD
PA-C
I want to search within the degree variable and look for space or - and replace it with ;. So basically I want the output like MD;PHD, PA;C. I am using TRANWRD function but it's not working for multiple characters.
Thanks
Chandan Mishra
I would use the translate function. e.g.:
data have; informat degree $20.; input degree &; cards; MD NP PA MD-PHD MD PHD PA-C ; data want; set have; degree=translate(strip(degree),";;"," -"); run;
Art, CEO, AnalystFinder.com
I would use the translate function. e.g.:
data have; informat degree $20.; input degree &; cards; MD NP PA MD-PHD MD PHD PA-C ; data want; set have; degree=translate(strip(degree),";;"," -"); run;
Art, CEO, AnalystFinder.com
CFC_SAS_Communities_400x225.jpg
It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.
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.