Cron Expression Parser
Parse cron expressions into human-readable descriptions, view field breakdowns, and see upcoming execution times.
Cron Expression
Enter a cron expression above to see its description.
Common Presets
Field Breakdown
Minute
*
Any
Hour
*
Any
Day of Month
*
Any
Month
*
Any
Day of Week
*
Any
Next 5 Execution Times
Field Reference
| Field | Values | Special Characters |
|---|---|---|
| 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 = Sun) | * , - / |
| Character | Meaning | Example |
|---|---|---|
| * | Any value | * * * * * — every minute |
| , | List of values | 1,15 * * * * — at minute 1 and 15 |
| - | Range of values | 0 9-17 * * * — every hour from 9 to 17 |
| / | Step values | */10 * * * * — every 10 minutes |