Locale::CA - two letter codes for province identification in Canada and vice versa
Version 0.06
use Locale::CA;
my $u = Locale::CA->new();
# Returns the French names of the provinces if $LANG starts with 'fr' or
# the lang parameter is set to 'fr'
print $u->{code2province}{'ON'}, "\n"; # prints ONTARIO
print $u->{province2code}{'ONTARIO'}, "\n"; # prints ON
my @province = $u->all_province_names();
my @code = $u->all_province_codes();
Creates a Locale::CA object.
Returns an array (not arrayref) of all province codes in alphabetical form.
Returns an array (not arrayref) of all province names in alphabetical form
This is a hashref which has two-letter province names as the key and the long name as the value.
This is a hashref which has the long name as the key and the two-letter province name as the value.
Nigel Horne, <njh at bandsman.co.uk>
- The province name is returned in
uc()
format. - neither hash is strict, though they should be.
You can find documentation for this module with the perldoc command.
perldoc Locale::CA
You can also look for information at:
-
RT: CPAN's request tracker
-
Search CPAN
Based on Locale::US - Copyright (c) 2002 - $present
Terrence Brannon.
Copyright 2012-2024 Nigel Horne.
This program is released under the following licence: GPL2