Cron Expression Parser
Paste a cron expression to translate it into plain English, validate every field, and preview the next run times. Supports 5-field and 6-field (with seconds) crontab syntax, ranges, lists, steps, month/weekday names and @daily-style shortcuts. Everything runs locally in your browser — nothing is uploaded.
| Field | Value | Allowed |
|---|
Cron syntax cheatsheet
┌───────────── minute (0–59) │ ┌─────────── hour (0–23) │ │ ┌───────── day of month (1–31) │ │ │ ┌─────── month (1–12 or JAN–DEC) │ │ │ │ ┌───── day of week (0–7 or SUN–SAT, 0 & 7 = Sunday) │ │ │ │ │ * * * * *
* any · , list · - range · / step. e.g. */15, 1-5, 0,30.
Use MON-FRI or JAN,JUL instead of numbers — case-insensitive.
@hourly, @daily, @weekly, @monthly, @yearly all expand automatically.
Add a 6th leading field for seconds, e.g. */30 * * * * * every 30 seconds.
When both are restricted, a run fires if either matches (standard cron behaviour).
Parsing and next-run math happen in your browser — nothing is uploaded.