BookmarkSubscribeRSS Feed
lmyers2
Obsidian | Level 7

Hello

 

I have a variable that has text as the value, and the text has hyphens and backslashes that I have to get rid of to reclassify the variables and run frequencies appropriately. I read the sas documentation on compress function but it's not quite working. Data and code examples below

 

Examples of disch_disp values: Expired d/t ICU, SNF-hospice

 

data want; set have;
disch_disp=compress(disch_disp, "/")
run;
1 REPLY 1
r_behata
Barite | Level 11

If you want to remove both the hyphens and backslashes.

 

Try :

 

disch_disp=compress(disch_disp, "/-");

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 874 views
  • 0 likes
  • 2 in conversation