Regular Expressions 101

Community Patterns

Regex for telephone numbers all over the world

0

Regular Expression
PCRE (PHP <7.3)

/
^(?=(?:\D*.\D*){10,15}$)\+?\d{1,4}?[-.\x20]?\(?\d{1,3}?\)?[-.\x20]?\d{1,4}[-.\x20]?\d{1,4}[-.\x20]?\d{1,9}$
/
gm

Description

Detects and validates most of the phone numbers all over the world

Submitted by Aditya Joshi - 5 years ago