Regular Expressions 101

Community Patterns

Date search

1

Regular Expression
PCRE (PHP <7.3)

/
\b(?P<date>(?P<day>3[0-1]|[0-2]?[\d])(?P<separator>\/|\-|\.)(?P<month>1[0-2]|[0-1]?[\d])\3(?P<year>[\d]{4}|[\d]{2}))
/
g

Description

Search for three different types of dates in spanish format

Submitted by Agustín Bouillet - 8 years ago