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

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.

1 ACCEPTED SOLUTION

Accepted Solutions
3 REPLIES 3
Reeza
Super User

Try TRANSLATE instead. 

Tom
Super User Tom
Super User

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
kiranv_
Rhodochrosite | Level 12

you can use prxchange too

data demo;
string='run along&the$wall#mister miller';
string1= prxchange('s/&|\$|#/ /', -1, string);
run;

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

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
  • 3 replies
  • 1939 views
  • 2 likes
  • 4 in conversation