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

I am looking for a way to remove any 0s in a character string. I've found many threads about removing *leading* zeros, but not about removing 0s in general. For example:

 

Data I have:

AB001234

C01403

D00003456

 

Data I want:

AB1234

C143

D3456

 

Any ideas?

Thank you in advance!

 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User
COMPRESS function allows you to specify it.

want = compress(word, '0');

View solution in original post

3 REPLIES 3
Reeza
Super User
COMPRESS function allows you to specify it.

want = compress(word, '0');
VDD
Ammonite | Level 13 VDD
Ammonite | Level 13
Data have;
input string $25.;
cards;
AB001234
C01403
D00003456
;
 
Data  want;
set have;
new_string = COMPRESS (string,0 );
run;
novinosrin
Tourmaline | Level 20

Hi @VDD  You are missing quotes around the 0. This will unnecessarily make SAS write a note to the log about the auto conversion. Just watch out for that

Catch up on SAS Innovate 2026

Dive into keynotes, announcements and breakthroughs on demand.

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