Regular Expressions 101

Community Patterns

Day, year and month regex

0

Regular Expression
PCRE2 (PHP >=7.3)

/
(?<DAY>\d?\d)(?<SEPARATOR>[-.\/])(?<MONTH>\d\d)(\k<SEPARATOR>)(?<YEAR>\d{4})
/
gm

Description

This regex allows to match date format with the same separators

Submitted by Cymon - 2 years ago