Regular Expressions 101

Community Patterns

Match Date in ISO 8601 Format

1

Regular Expression
PCRE2 (PHP >=7.3)

/
^(?:19|20)\d\d-(?:0[1-9]|1[0-2])-(?:0[1-9]|[12][0-9]|3[01])(?:T(?:[01][0-9]|2[0-3]):[0-5][0-9](?::[0-5][0-9])?(?:\.\d+)?(?:[+-][01][0-9]:[0-5][0-9]|Z)?)?$
/
gm

Description

Submitted by anonymous - a month ago