Regular Expressions 101

Community Patterns

US phone number

2

Regular Expression
PCRE2 (PHP >=7.3)

/
(\+?(\b1)?[\ .\/-]?((?(2)|(\b))|(\())\d{3}(?(?<=\(\d{3})\)|)[\ .\/-]?)?(?(1)|\b)\d{3}[\ .\/-]?\d{4}[\ ]?([xX][\ ]?\d{1,5})?\b
/
gm

Description

US phone number, try to catch as many as possible

Submitted by anonymous - 3 years ago