The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# automatically generated file, don't edit



# Copyright 2011 David Cantrell, derived from data from libphonenumber
# http://code.google.com/p/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
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# 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.
package Number::Phone::StubCountry::ZA;
use base qw(Number::Phone::StubCountry);

use strict;
use warnings;
use utf8;
our $VERSION = 1.20180410221548;

my $formatters = [
                {
                  'leading_digits' => '860',
                  'national_rule' => '0$1',
                  'format' => '$1 $2 $3',
                  'pattern' => '(860)(\\d{3})(\\d{3})'
                },
                {
                  'pattern' => '(\\d{2})(\\d{3,4})',
                  'national_rule' => '0$1',
                  'leading_digits' => '8[1-4]',
                  'format' => '$1 $2'
                },
                {
                  'format' => '$1 $2 $3',
                  'national_rule' => '0$1',
                  'leading_digits' => '8[1-4]',
                  'pattern' => '(\\d{2})(\\d{3})(\\d{2,3})'
                },
                {
                  'pattern' => '(\\d{2})(\\d{3})(\\d{4})',
                  'leading_digits' => '
            [1-79]|
            8(?:
              [0-57]|
              6[1-9]
            )
          ',
                  'national_rule' => '0$1',
                  'format' => '$1 $2 $3'
                }
              ];

my $validators = {
                'voip' => '87\\d{7}',
                'toll_free' => '80\\d{7}',
                'fixed_line' => '
          (?:
            1[0-8]|
            2[1-378]|
            3[1-69]|
            4\\d|
            5[1346-8]
          )\\d{7}
        ',
                'personal_number' => '',
                'pager' => '',
                'specialrate' => '(860\\d{6})|(
          86[2-9]\\d{6}|
          9[0-2]\\d{7}
        )|(861\\d{6})',
                'mobile' => '
          (?:
            6\\d|
            7[0-46-9]
          )\\d{7}|
          8(?:
            [1-4]\\d{1,5}|
            5\\d{5}
          )\\d{2}
        ',
                'geographic' => '
          (?:
            1[0-8]|
            2[1-378]|
            3[1-69]|
            4\\d|
            5[1346-8]
          )\\d{7}
        '
              };
my %areanames = (
  2710 => "Johannesburg",
  2711 => "Johannesburg",
  2712 => "Tshwane",
  2713 => "Middelburg\/Witbank\/Nelspruit",
  2714 => "Rustenburg",
  2715 => "Polokwane",
  2716 => "Vaal\ Triangle",
  2717 => "Ermelo\/Secunda",
  2718 => "Potchefstroom\/Klerksdorp",
  2721 => "Cape\ Town",
  2722 => "Malmesbury\/Vredenburg",
  2723 => "Worcester\/Robertson",
  2727 => "Vredendal\/Springbok",
  2728 => "Hermanus\/Swellendam",
  2731 => "Durban",
  2732 => "Stanger",
  2733 => "Pietermaritzburg",
  2734 => "Newcastle\/Vryheid",
  2735 => "Zululand",
  2736 => "Ladysmith",
  2739 => "Eastern\ Pondoland\/Port\ Shepstone",
  2740 => "Bisho\/Alice",
  2741 => "Port\ Elizabeth",
  2742 => "Jeffreys\ Bay\/Humansdorp",
  2743 => "East\ London",
  2744 => "Garden\ Route",
  2745 => "Queenstown",
  2746 => "Grahamstown",
  2747 => "Mthatha\/Butterworth",
  2748 => "Cradock",
  2749 => "Graaff\-Reinet",
  2751 => "Bloemfontein\/Aliwal\ North",
  2753 => "Kimberley\/Kuruman",
  2754 => "Upington",
  2756 => "Parys",
  2757 => "Voorspoed\,\ Welkom\/Welkom\ Central\,\ Welkom",
  2758 => "Bethlehem",
);
    sub new {
      my $class = shift;
      my $number = shift;
      $number =~ s/(^\+27|\D)//g;
      my $self = bless({ number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
      return $self if ($self->is_valid());
      $number =~ s/^(?:0)//;
      $self = bless({ number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
      return $self->is_valid() ? $self : undef;
    }
1;