BookmarkSubscribeRSS Feed
SASPhile
Quartz | Level 8


There are some zip codes which have alphabets in them as shown below.I need to display only 08854 as the correct record.regular expressions does this job, but I figure the syntax.

00NSW

W85LJ

08854

3 REPLIES 3
Haikuo
Onyx | Level 15

DATA HAVE;

INPUT ZIPCODE $;

IF ANYALPHA(ZIPCODE) THEN DELETE;

CARDS;

00NSW

W85LJ

08854

;

Regards,

Haikuo

ballardw
Super User

Are the data by any chance multinational and you are getting other system postal codes? If so you may want to modifiy Haikuo's suggestion to output the data to two different datasets.


Doc_Duke
Rhodochrosite | Level 12

You can also use the sashelp.zipcode table to determine if any particular ZIP code is valid.  That data are updated every few months, so you may need to download the current one from sas.com.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1670 views
  • 0 likes
  • 4 in conversation