Cron Parser
Translate cron expressions to natural language and next run times
Cron is a standard schedule notation for running tasks automatically at specific times on a server (e.g. backup scripts, report dispatch, cache cleanup). The five-field expression (minute · hour · day · month · weekday) is parsed into natural language and the next run times.
min (0-59) · hour (0-23) · dom (1-31) · month (1-12) · dow (0-7)
09:xx, minute 0, weekday 1-5
| Next 5 runs (local time) |
|---|
5/12/2026, 9:00:00 AM |
5/13/2026, 9:00:00 AM |
5/14/2026, 9:00:00 AM |
5/15/2026, 9:00:00 AM |
5/18/2026, 9:00:00 AM |
Verify outputs before using in production. No warranty — see Terms.