Cron Expression Parser
Parse and explain cron expressions. Calculate next scheduled run times and get human-readable descriptions.
Cron Expression (standard)
Description
Enter a valid cron expression to see its description
Next Scheduled Dates
Enter a cron expression to see scheduled dates
Cron Expression Format
Field | Allowed Values | Special Characters |
---|---|---|
Minutes | 0-59 | * , - / |
Hours | 0-23 | * , - / |
Day of Month | 1-31 | * , - / |
Month | 1-12 | * , - / |
Day of Week | 0-6 (0=Sunday) | * , - / |
Examples:
* * * * *
- Every minute0 * * * *
- Every hour at minute 00 0 * * *
- Every day at midnight*/15 * * * *
- Every 15 minutes0 0 * * 0
- Every Sunday at midnight