Locale::Country - ISO two letter codes for country identification |
Locale::Country - ISO two letter codes for country identification (ISO 3166)
use Locale::Country;
$country = code2country('jp'); # $country gets 'Japan' $code = country2code('Norway'); # $code gets 'no'
@codes = all_country_codes(); @names = all_country_names();
Locale::Country::_alias_code('uk' => 'gb'); # allow "uk": United Kingdom
The Locale::Country
module provides access to the ISO two-letter
codes for identifying countries, as defined in ISO 3166. You can either
access the codes via the conversion routines (described below),
or with the two functions which return lists of all country codes or
all country names.
There are two conversion routines: code2country()
and country2code()
.
code2country()
undef
will be returned:
$country = code2country('fi');
country2code()
undef
will be returned:
$code = country2code('Norway');
The case of the country name is not important. See the section KNOWN BUGS AND LIMITATIONS below.
There are two function which can be used to obtain a list of all codes, or all country names:
all_country_codes()
all_country_names()
This module supports a semi-private routine for specifying two letter code aliases. This feature was added as a mechanism for handling a ``uk'' code. The ISO standard says that the two-letter code for ``United Kingdom'' is ``gb'', whereas domain names are all .uk.
By default the module does not understand ``uk'', since it is implementing an ISO standard. If you would like 'uk' to work as the two-letter code for United Kingdom, use the following:
use Locale::Country;
Locale::Country::_alias_code('uk' => 'gb');
With this code, both ``uk'' and ``gb'' are valid codes for United Kingdom, with the reverse lookup returning ``uk'' rather than the usual ``gb''.
The following example illustrates use of the code2country()
function.
The user is prompted for a country code, and then told the corresponding
country name:
$| = 1; # turn off buffering
print "Enter country code: "; chop($code = <STDIN>); $country = code2country($code); if (defined $country) { print "$code = $country\n"; } else { print "'$code' is not a valid country code!\n"; }
Most top-level domain names are based on these codes, but there are certain codes which aren't. If you are using this module to identify country from hostname, your best bet is to preprocess the country code.
For example, edu, com, gov and friends would map to us; uk would map to gb. Any others?
country2code()
, the country name must currently appear
exactly as it does in the source of the module. For example,
country2code('United States')
will return us, as expected. But the following will all return undef
:
country2code('United States of America') country2code('Great Britain') country2code('U.S.A.')
If there's need for it, a future version could have variants for country names.
Neil Bowers <neilb@cre.canon.co.uk>
Copyright (c) 1997,1998 Canon Research Centre Europe (CRE).
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Locale::Country - ISO two letter codes for country identification |