Phone Number Patterns

Match phone numbers with regex patterns in this example collection of phone number patterns:

Simple Pattern Matching

\d{10}

\d{10}

Matches: 1234567890 (10-digit phone number)

Exact Match Example

Area Code Matching

\b\d{3}\b

\b\d{3}\b

Matches: 123 (3-digit area code)

Area Code Example

Country Code Matching

\b1?\d{2}

\b1?\d{2}

Matches: 1X or 12 (country code 1 followed by exactly 2 digits)

Country Code Example