Named date fields
(?<year>\d{4})-(?<month>\d{2})-(?<day>\d{2}) with dgmShows each match plus named year, month, and day captures with their UTF-16 offsets.
Use Ctrl/Cmd + Enter in the pattern or test text to run. JavaScript positions are UTF-16 code-unit offsets; turn on d to see capture offsets.
Exact supported inputs, outputs, limits, and primary sources for the current implementation.
Capability claims last reviewed September 9, 2026. Review dates describe the implementation audit, not content freshness by itself.
A regex tester should show the runtime it uses and make its boundaries visible. This workbench evaluates only when you request it, in a short-lived browser worker with explicit pattern, sample, match-count, and time limits. It supports current JavaScript flags, zero-length Unicode matching, named captures, d-flag offsets, native replacements, and match-data export that deliberately excludes the full sample.
Tooleras keeps this page specific to the job above instead of claiming support for adjacent formats, platforms, or edge cases it cannot verify. Open the capability guide for the exact inputs, outputs, limits, and sources.
(?<year>\d{4})-(?<month>\d{2})-(?<day>\d{2}) with dgmShows each match plus named year, month, and day captures with their UTF-16 offsets.
(a+)+$ against a near-miss sample
Warns about nested unbounded repetition and stops the isolated worker after the responsiveness budget if evaluation runs too long.