Regular Expressions 101

Community Patterns

catching/matching phone numbers

0

Regular Expression
PCRE (PHP <7.3)

/
^(\d{3}.*|^\(.*|^1\s.*)
/
gm

Description

A simple regex to capture different formats of phone numbers

Submitted by anonymous - 6 years ago