Hello,
I ran a code to change the 'forwardslash' and 'semicolon' to 'comma.' I found all of the columns are working, except one cell is '3 CRANIOTOMIES; HYPOSPADIAS.'
Name=strip(compbl(translate(Disease,',','/;')));
The 'semicolon' between ''3 CRANIOTOMIES' and 'HYPOSPADIAS' didn't change to 'comma', but 'space' instead. I can't figure out why, and how to fix it. Please help, thank you.
If you want to change both / and ; to , you would use
Name=strip(compbl(translate(Disease,',,','/;')));
The number of characters in the "to" list have to match the number in the "from" list. Otherwise you get "default" .
From the documentation:
Under Windows, you do not have to specify a pair of arguments that consist of a to argument and a from argument. However, if you do not use pairs, you must supply a comma as a placeholder. If to has fewer characters than from, TRANSLATE changes the extra from characters to blanks. If to has more characters than from, TRANSLATE ignores the extra to characters.
If you want to change both / and ; to , you would use
Name=strip(compbl(translate(Disease,',,','/;')));
The number of characters in the "to" list have to match the number in the "from" list. Otherwise you get "default" .
From the documentation:
Under Windows, you do not have to specify a pair of arguments that consist of a to argument and a from argument. However, if you do not use pairs, you must supply a comma as a placeholder. If to has fewer characters than from, TRANSLATE changes the extra from characters to blanks. If to has more characters than from, TRANSLATE ignores the extra to characters.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.