Cron Expression Parser
The cron parser reads a five-field crontab expression, describes in plain English when it fires, and lists the next run times in UTC. It expands ranges, steps and names, understands the @daily style shorthands, and warns about the day-of-month and day-of-week rule that catches almost everyone out.
Your result will appear here.
Not sure where to start? Use Load example.
Results update automatically and are calculated on your device. Nothing you type is sent to a server.
Runs in your browser. Processing happens entirely in your browser. Nothing you enter is sent to Delimiter.live.
How to use the Cron Expression Parser
- Paste the cron expression — five fields separated by spaces: minute, hour, day of month, month, day of week.
- Read the plain-English description at the top.
- Check the next run times, which are shown in UTC.
- Choose how many upcoming runs to list if you need to see the pattern.
Example
30 2 * * 1-5
At 02:30, on Monday, Tuesday, Wednesday, Thursday, Friday.
Common use cases
- Checking that a schedule you wrote fires when you intended.
- Understanding an inherited crontab entry before changing it.
- Confirming a job will not fire more often than you expect.
- Working out when a nightly job will next run relative to a deploy.
Limitations and things to watch for
- Run times are calculated in UTC. Your server runs cron in its own time zone, so the actual local firing time may differ, and daylight saving transitions can cause a job to be skipped or repeated.
- Only the standard five fields are read. Six-field expressions with a leading seconds field, used by Quartz and some libraries, are rejected rather than misread.
- Non-standard extensions such as L (last), W (weekday) and # (nth weekday), supported by Quartz but not by Vixie cron, are not understood.