Regular Expressions 101

Community Patterns

Regex for matching French Phone Numbers

0

Regular Expression
PCRE2 (PHP >=7.3)

/
(?:(?:\+|00)33|0)\s*[1-9](?:[\s-]\d{2}){4}
/
gm

Description

This is an expression that will match French Phone numbers You can modify this expression to help you match your needs.

Submitted by anonymous - a year ago