The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

# automatically generated file, don't edit
# Copyright 2024 David Cantrell, derived from data from libphonenumber
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
use strict;
use utf8;
our $VERSION = 1.20250323211819;
my $formatters = [
{
'format' => '$1 $2 $3',
'leading_digits' => '
8[047]|
90
',
'national_rule' => '0$1',
'pattern' => '(\\d{3})(\\d{3})(\\d{3})'
},
{
'format' => '$1 $2 $3 $4',
'leading_digits' => '
[2-79]|
81
',
'national_rule' => '0$1',
'pattern' => '(\\d{2})(\\d{3})(\\d{2})(\\d{2})'
},
{
'format' => '$1 $2 $3 $4 $5',
'leading_digits' => '8',
'national_rule' => '0$1',
'pattern' => '(\\d{3})(\\d{2})(\\d{3})(\\d{2})(\\d{2})'
}
];
my $validators = {
'fixed_line' => '
(?:
2[12467]|
3[1-4]|
4[134]|
5[256]|
6[12]|
[7-9]1
)\\d{7}
',
'geographic' => '
(?:
2[12467]|
3[1-4]|
4[134]|
5[256]|
6[12]|
[7-9]1
)\\d{7}
',
'mobile' => '
(?:
6[89]|
7[235-9]
)\\d{7}
',
'pager' => '74[0248]\\d{6}',
'personal_number' => '878\\d{6}',
'specialrate' => '(84[0248]\\d{6})|(90[016]\\d{6})|(5[18]\\d{7})',
'toll_free' => '800\\d{6}',
'voip' => ''
};
my %areanames = ();
$areanames{de} = {"4131", "Bern",
"4126", "Freiburg",
"4144", "Zürich",
"4143", "Zürich",
"4127", "Sitten",
"4141", "Luzern",
"4122", "Genf",
"4132", "Biel\/Neuenburg\/Solothurn\/Jura",};
$areanames{en} = {"4126", "Fribourg",
"4171", "St\.\ Gallen",
"4131", "Berne",
"4191", "Bellinzona",
"4156", "Baden",
"4144", "Zurich",
"4121", "Lausanne",
"4181", "Chur",
"4162", "Olten",
"4143", "Zurich",
"4152", "Winterthur",
"4134", "Burgdorf\/Langnau\ i\.E\.",
"4127", "Sion",
"4161", "Basel",
"4122", "Geneva",
"4141", "Lucerne",
"4155", "Rapperswil",
"4124", "Yverdon\/Aigle",
"4133", "Thun",
"4132", "Bienne\/Neuchâtel\/Soleure\/Jura",};
$areanames{it} = {"4121", "Losanna",
"4181", "Coira",
"4143", "Zurigo",
"4126", "Friburgo",
"4171", "San\ Gallo",
"4131", "Berna",
"4144", "Zurigo",
"4132", "Bienne\/Neuchâtel\/Soletta\/Giura",
"4161", "Basilea",
"4122", "Ginevra",
"4141", "Lucerna",};
$areanames{fr} = {"4171", "St\.\ Gall",
"4181", "Coire",
"4161", "Bâle",
"4152", "Winterthour",
"4122", "Genève",
"4133", "Thoune",};
my $timezones = {
'' => [
'Europe/Zurich'
]
};
sub new {
my $class = shift;
my $number = shift;
$number =~ s/(^\+41|\D)//g;
my $self = bless({ country_code => '41', number => $number, formatters => $formatters, validators => $validators, timezones => $timezones, areanames => \%areanames}, $class);
return $self if ($self->is_valid());
$number =~ s/^(?:0)//;
$self = bless({ country_code => '41', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
return $self->is_valid() ? $self : undef;
}
1;