| Locale-US documentation | Contained in the Locale-US distribution. |
Locale::US - two letter codes for state identification in the United States and vice versa.
use Locale::US;
my $u = new Locale::US;
my $state = $u->{code2state}{$code};
my $code = $u->{state2code}{$state};
my @state = $u->all_state_names;
my @code = $u->all_state_codes;
Map from US two-letter codes to statees and vice versa.
uc() format.http://www.usps.gov/ncsc/lookups/usps_abbreviations.htm
Online file with the USPS two-letter codes for the United States and its possessions.
lynx -dump http://www.usps.gov/ncsc/lookups/usps_abbreviations.htm > kruft.txt kruft2codes.pl
Copyright: Copyright (c) 2002-2007 Terrence Brannon. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
License: GPL, Artistic, available in the Debian Linux Distribution at /usr/share/common-licenses/{GPL,Artistic}
T. M. Brannon, <tbone@cpan.org>
Copyright 2003 by T. M. Brannon
| Locale-US documentation | Contained in the Locale-US distribution. |
package Locale::US; use 5.006001; use strict; use warnings; use Data::Dumper; require Exporter; our @ISA = qw(Exporter); # Items to export into callers namespace by default. Note: do not export # names by default without a very good reason. Use EXPORT_OK instead. # Do not simply export all your public functions/methods/constants. # This allows declaration use Locale::US ':all'; # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK # will save memory. our %EXPORT_TAGS = ( 'all' => [ qw( ) ] ); our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); our @EXPORT = qw( ); our $VERSION = '1.2'; # Preloaded methods go here. sub new { my $class = shift; my $self = {} ; while ( <DATA>) { chomp; # warn $_; last if /__END__/; my ($code, $state) = split ':'; $self->{code2state}{$code} = $state; $self->{state2code}{$state} = $code; } # warn Dumper $self; bless $self, $class; } sub all_state_codes { my $self = shift; keys % { $self->{code2state} } ; } sub all_state_names { my $self = shift; keys % { $self->{state2code} } ; } 1; __DATA__ AL:ALABAMA AK:ALASKA AS:AMERICAN SAMOA AZ:ARIZONA AR:ARKANSAS CA:CALIFORNIA CO:COLORADO CT:CONNECTICUT DE:DELAWARE DC:DISTRICT OF COLUMBIA FM:FEDERATED STATES OF MICRONESIA FL:FLORIDA GA:GEORGIA GU:GUAM HI:HAWAII ID:IDAHO IL:ILLINOIS IN:INDIANA IA:IOWA KS:KANSAS KY:KENTUCKY LA:LOUISIANA ME:MAINE MH:MARSHALL ISLANDS MD:MARYLAND MA:MASSACHUSETTS MI:MICHIGAN MN:MINNESOTA MS:MISSISSIPPI MO:MISSOURI MT:MONTANA NE:NEBRASKA NV:NEVADA NH:NEW HAMPSHIRE NJ:NEW JERSEY NM:NEW MEXICO NY:NEW YORK NC:NORTH CAROLINA ND:NORTH DAKOTA MP:NORTHERN MARIANA ISLANDS OH:OHIO OK:OKLAHOMA OR:OREGON PW:PALAU PA:PENNSYLVANIA PR:PUERTO RICO RI:RHODE ISLAND SC:SOUTH CAROLINA SD:SOUTH DAKOTA TN:TENNESSEE TX:TEXAS UT:UTAH VT:VERMONT VI:VIRGIN ISLANDS VA:VIRGINIA WA:WASHINGTON WV:WEST VIRGINIA WI:WISCONSIN WY:WYOMING __END__ # Below is stub documentation for your module. You'd better edit it!