Regular Expressions 101

Community Patterns

basic date recognition

1

Regular Expression
PCRE (PHP <7.3)

/
(?P<day>0[1-9]|[12]\d|3[01])(?P<seperator>[\/-])(?P<month>0[1-9]|1[012])(?P=seperator)(?P<year>\d\d\d\d)
/
gm

Description

no description available

Submitted by hanefi - 8 years ago