BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
ybz12003
Rhodochrosite | Level 12

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.

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

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.

View solution in original post

2 REPLIES 2
ballardw
Super User

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.
ybz12003
Rhodochrosite | Level 12
Thank you!

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

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!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 765 views
  • 0 likes
  • 2 in conversation