Regular Expressions 101

Community Patterns

Moible Numbers - South Africa

1

Regular Expression
PCRE (PHP <7.3)

/
^(\+|00)?(|0|27)([5-9])([0-9])( )?([0-9]{3})( )?([0-9]{4})$
/
gm

Description

Matches mobile numbers in South africa. Supports "00<C_code>" and "+<C_code>" numbering supports spacing between number parts examples of matching. +27721234567 , 0821234567 , 002783 123 4567, 079 123 4567

Submitted by Zalatos - 8 years ago