What cron format does this support?
This tool supports standard 5-field cron expressions in the format: minute hour day-of-month month day-of-week.
Developer Tools
Parse and explain cron expressions directly in your browser.
Break down any standard 5-field cron expression into its individual fields and see a plain English explanation of when it will run.
Parse and explain each field of a standard 5-field cron expression.
Format: minute hour day month weekday
Field reference
// Parsed fields will appear here. Paste a 5-field cron expression such as 0 9 * * 1-5.
Each field is validated and explained individually, then combined into a readable sentence.
Copy the parsed output to use in documentation, pull requests, or code comments.
The expression 0 9 * * 1-5 triggers at 09:00 on weekdays. Load the example in the tool to see the full breakdown.
Expression: 0 9 * * 1-5
Minute: 0 → 0
Hour: 9 → 09
Day of month: * → every day of the month
Month: * → every month
Day of week: 1-5 → Monday through Friday
Human readable: At 09:00, Monday through Friday This tool supports standard 5-field cron expressions in the format: minute hour day-of-month month day-of-week.
Yes, parsing happens entirely in your browser. No data is sent to a server.
It means the job runs at 09:00 every Monday through Friday.