Regular Expressions 101

Community Patterns

Phone number with dashes

0

Regular Expression
PCRE (PHP <7.3)

/
^[2-9]\d{2}-\d{3}-\d{4}$
/
g

Description

Finds valid phone numbers, including dashes

Valid: 223-444-5555

Invalid: 123-456-7890 // Area code cannot start with a 1 2234445555

Submitted by anonymous - 7 years ago