Converts ZIP codes to state postal codes
Category: |
State and ZIP
Code
|
- zip-code
- specifies any SAS character expression that
contains a five-digit ZIP code.
Requirement: |
The specified character
expression must have a length of 5. |
ZIPSTATE returns
the two-character state postal code (or world-wide GSA geographic code for
U.S. territories) that corresponds to its five-character ZIP code argument.
ZIPSTATE returns character values in uppercase.
The ZIPNAME, ZIPNAMEL, and
ZIPSTATE functions take the same argument but return different values. ZIPNAME
returns the uppercase name of the state or U.S. territory that corresponds
to its five-character ZIP code argument. ZIPNAMEL returns the mixed case name
of the state or U.S. territory that corresponds to its five-character ZIP
code argument. ZIPSTATE returns the uppercase two-character state postal code
(or world-wide GSA geographic code for U.S. territories) that corresponds
to its five-character ZIP code argument.
The examples show the differences when using ZIPNAME,
ZIPNAMEL, and ZIPSTATE.
SAS Statements |
Results |
state=zipname('27511');
put state;
|
NORTH CAROLINA
|
state=zipnamel('27511');
put state;
|
North Carolina
|
st=zipstate('27511');
put st;
|
NC
|
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.