Regular Expressions 101

Community Patterns

Timestamps

1

Regular Expression
ECMAScript (JavaScript)

/
(?<year>\d{4})-(?<month>0[1-9]|1[0-2])-(?<day>0[1-9]|1[0-9]|2[0-9]|3[0-1])T(?<time>(?:[0-1][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9](?:.\d{3})?)(?<timezone>Z|[\+\-](?:0[1-9]|1[0-2]):(?:00|15|30|45))
/
gm

Description

Recognizes timestamps with the technical timestamp format.

Submitted by Alejandro, Andreu - a year ago (Last modified a year ago)