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

Hello Experts,

 

I would like to replace the "â" by "a" and the "ô " by "o" in the column My_data.

Could I use TRANWRD function with multiple arguments like My_data2=TRANWRD(My_data,"â",a,"ô",o)  ?

There is some function that runs with multiple arguments please  and replace the character?

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

Check you ENCODING setting.  You can check the automatic macro variable SYSENCODING.

 

If you are using a single byte encoding like WLATIN1 then solution like in this question using TRANSLATE() will work.

Otherwise if you are using a multi-byte encoding like UTF-8 then you will need to use the KTRANSLATE() function instead.

 

View solution in original post

4 REPLIES 4
PaigeMiller
Diamond | Level 26

I think the TRANSLATE function does what you want.

--
Paige Miller
Tom
Super User Tom
Super User

Check you ENCODING setting.  You can check the automatic macro variable SYSENCODING.

 

If you are using a single byte encoding like WLATIN1 then solution like in this question using TRANSLATE() will work.

Otherwise if you are using a multi-byte encoding like UTF-8 then you will need to use the KTRANSLATE() function instead.

 

SASdevAnneMarie
Barite | Level 11
Thank you, Tom !
That works !
Ksharp
Super User
Also check function BASECHAR()

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 1561 views
  • 3 likes
  • 4 in conversation