From Code to Community: Sponsoring The Perl and Raku Conference 2025 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.20250323211836;
my $formatters = [
{
'format' => '$1 $2 $3',
'leading_digits' => '21',
'national_rule' => '0$1',
'pattern' => '(\\d)(\\d{2})(\\d{3,4})'
},
{
'format' => '$1 $2 $3',
'leading_digits' => '[3-5][1-8]1[67]',
'national_rule' => '0$1',
'pattern' => '(\\d{2})(\\d{2})(\\d{2,3})'
},
{
'format' => '$1 $2',
'intl_format' => 'NA',
'leading_digits' => '9090',
'national_rule' => '0$1',
'pattern' => '(\\d{4})(\\d{3})'
},
{
'format' => '$1/$2 $3 $4',
'leading_digits' => '2',
'national_rule' => '0$1',
'pattern' => '(\\d)(\\d{3})(\\d{3})(\\d{2})'
},
{
'format' => '$1 $2 $3',
'leading_digits' => '[689]',
'national_rule' => '0$1',
'pattern' => '(\\d{3})(\\d{3})(\\d{3})'
},
{
'format' => '$1/$2 $3 $4',
'leading_digits' => '[3-5]',
'national_rule' => '0$1',
'pattern' => '(\\d{2})(\\d{3})(\\d{2})(\\d{2})'
}
];
my $validators = {
'fixed_line' => '
(?:
2(?:
16|
[2-9]\\d{3}
)|
(?:
(?:
[3-5][1-8]\\d|
819
)\\d|
601[1-5]
)\\d
)\\d{4}|
(?:
2|
[3-5][1-8]
)1[67]\\d{3}|
[3-5][1-8]16\\d\\d
',
'geographic' => '
(?:
2(?:
16|
[2-9]\\d{3}
)|
(?:
(?:
[3-5][1-8]\\d|
819
)\\d|
601[1-5]
)\\d
)\\d{4}|
(?:
2|
[3-5][1-8]
)1[67]\\d{3}|
[3-5][1-8]16\\d\\d
',
'mobile' => '
909[1-9]\\d{5}|
9(?:
0[1-8]|
1[0-24-9]|
4[03-57-9]|
5\\d
)\\d{6}
',
'pager' => '9090\\d{3}',
'personal_number' => '',
'specialrate' => '(8[5-9]\\d{7})|(
9(?:
00|
[78]\\d
)\\d{6}
)|(96\\d{7})',
'toll_free' => '800\\d{6}',
'voip' => '
6(?:
02|
5[0-4]|
9[0-6]
)\\d{6}
'
};
my %areanames = ();
$areanames{en} = {"42138", "Topolcany",
"42137", "Nitra",
"42136", "Levice",
"4212", "Bratislava",
"42144", "Liptovsky\ Mikulas",
"42143", "Martin",
"42155", "Kosice",
"42145", "Zvolen",
"42154", "Bardejov",
"42153", "Spisska\ Nova\ Ves",
"42142", "Povazska\ Bystrica",
"42152", "Poprad",
"42151", "Presov",
"421601", "Roznava",
"42141", "Zilina",
"42133", "Trnava",
"42134", "Senica",
"42135", "Nove\ Zamky",
"42156", "Michalovce",
"42148", "Banska\ Bystrica",
"42147", "Lucenec",
"42157", "Humenne",
"42158", "Roznava",
"42146", "Prievidza",
"42131", "Dunajska\ Streda",
"42132", "Trencin",};
my $timezones = {
'' => [
'Europe/Bratislava'
]
};
sub new {
my $class = shift;
my $number = shift;
$number =~ s/(^\+421|\D)//g;
my $self = bless({ country_code => '421', number => $number, formatters => $formatters, validators => $validators, timezones => $timezones, areanames => \%areanames}, $class);
return $self if ($self->is_valid());
$number =~ s/^(?:0)//;
$self = bless({ country_code => '421', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
return $self->is_valid() ? $self : undef;
}
1;