Converts ZIP codes to mixed case state names
Category: |
State and ZIP
Code
|
- zip-code
- specifies any SAS character expression that
contains a five-digit ZIP code.
Requirement: |
The character expressions
you use must have a length of five, or the function generates an error. |
ZIPNAMEL returns
the name of the state or U.S. territory that corresponds to its five-character
ZIP code argument. ZIPNAMEL returns mixed case character values up to 20 characters
long.
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.
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.