Cron Parser
Parse a cron expression (min hour day month weekday) and list the next run times.
Dev
How to use
- Enter a cron expression (e.g. 0 9 * * 1-5).
- The expression is broken down into minute, hour, day, month, weekday.
- The next run times are listed from the current time.
FAQ
What format is supported?
Standard 5 fields (min hour day month weekday) with * / - , notation.
Is weekday 0 or 7 Sunday?
Both are treated as Sunday (0 = 7 = Sun).
Which time zone is used?
Next run times are computed in your device’s local time zone.