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

I'm trying to compress all special characters out of street addresses.  It won't allow me to compress #.  When  I take it out of the statement, it does allow me to compress the periods.  I have other characters such as commas and apostrophes I want to get rid of also.

street=upcase(compress(street,'.','#');

1 ACCEPTED SOLUTION

Accepted Solutions
Doc_Duke
Rhodochrosite | Level 12

RTFM.  You have the syntax wrong.

street=upcase(compress(street,'.#');

View solution in original post

5 REPLIES 5
Doc_Duke
Rhodochrosite | Level 12

RTFM.  You have the syntax wrong.

street=upcase(compress(street,'.#');

ballardw
Super User

Put all of the characters to compress within one set of quotes. The comma between them as you have is trying to interpret the # as a modifier.

street=upcase(compress(street,'.#');

GreggB
Pyrite | Level 9

Excellent.  Thank you.

art297
Opal | Level 21

You might find it even easier if you just KEEP the characters you want.  e.g.,

n or N

adds digits, the underscore character, and English letters to the list of characters.

thus street=compress(street,,'kn) might accomplish everything you want

GreggB
Pyrite | Level 9

Cool.  That's good to know.

sas-innovate-white.png

Missed SAS Innovate in Orlando?

Catch the best of SAS Innovate 2025 — anytime, anywhere. Stream powerful keynotes, real-world demos, and game-changing insights from the world’s leading data and AI minds.

 

Register now

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 5 replies
  • 2763 views
  • 6 likes
  • 4 in conversation