Regular Expressions 101

Community Patterns

Dates with dot (Groups)

0

Regular Expression
PCRE (PHP <7.3)

/
([0-9]{4})\.([0-9]{2})\.([0-9]{2})
/
g

Description

Get numbers formated as dates with dots and Group them by year, month and day.

Submitted by Martin819 - 7 years ago