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, "/-");

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

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
  • 1365 views
  • 0 likes
  • 2 in conversation