Cron Expression Parser
What does this cron expression do?
Paste an expression and get it back in English, field by field, with its next runs, how often it fires, and any trap it has walked into.
Questions people ask
The things that come up about cron expression parsers, answered plainly.
What does '0 0 1 * 1' actually run on?
The 1st of every month *and* every Monday — not Mondays that fall on the 1st. When both day-of-month and day-of-week are restricted, cron ORs them. It is the single most surprising rule in cron, and the page flags it whenever it applies.
Which time zone does a cron job use?
The system's local time, unless the runner says otherwise — which means a job scheduled for 02:30 does not run on the morning the clocks go forward. The next-run list is computed in the zone you select and skips non-existent times the same way.
Related tools
Julian days, Excel serials, GPS time, cron expressions and format validators.