Regex & Code
Regex & Code — 7 free browser-based developer tools including Regex Tester, Regex Cheatsheet and Cron Expression Generator. Everything runs locally with no signup or uploads, so your data stays private and results are instant.
How to Use
- 1Test the pattern on real input— Paste a sample into the Regex Tester: matches and capture groups are highlighted as you type, so you can see which alternative actually fires before shipping the pattern.
- 2Format or minify the code— The CSS, HTML, JavaScript and SQL formatters re-indent a minified file so it can be read, or strip whitespace and comments when you need the smallest payload.
- 3Write the schedule with a form— The cron generator builds the expression from the minute, hour, day, month and weekday fields and states in words when the job will actually run.
Frequently Asked Questions
It runs the browser's own JavaScript RegExp engine, so a pattern that matches here matches identically in Node.js and in the browser. Most PCRE patterns carry over, but possessive quantifiers and recursion do not exist in JavaScript, and lookbehind needs a reasonably current browser.
No. The CSS, HTML, JavaScript and SQL formatters only rewrite whitespace, indentation and line breaks. Minify mode also strips comments, so keep a copy of the original if those comments are licence headers you have to preserve.
The five fields are minute, hour, day of month, month and day of week, so that example runs at 03:00 every Monday. The Cron Expression Generator builds the string from dropdowns and previews the next scheduled runs, letting you confirm the schedule before you deploy it.