Developer Tool
Ready-to-use regular expressions for the date and timestamp formats developers match against most often — test any of them live against your own string.
None of these patterns check whether a date is actually valid — a regex will happily match 2026-02-31 even though February never has 31 days. Regex is good for confirming a string is shaped like a date; confirming it's a real, valid calendar date needs to happen with an actual date parser afterward. For that step, see the ISO 8601 Validator, which does full validation, not just shape-matching.
Related
Full validation, not just pattern-matching.
See any date written in every common format at once.
These same patterns, already wired up to scan real log text.