Cron Expression Parser

Parse and validate cron expressions. Get human-readable descriptions and see the next scheduled run times.

Minute Hour Day Month Weekday

Common Presets

0 0 * * *
Daily at midnight
0 12 * * *
Daily at noon
0 */6 * * *
Every 6 hours
*/15 * * * *
Every 15 minutes
0 9 * * 1
Every Monday at 9 AM
0 0 1 * *
First day of month
help_outline How It Works
  1. Enter your cron expression in the 5 fields: Minute, Hour, Day, Month, Weekday
  2. Or type the full expression in the complete input field
  3. Click "Parse Expression" to validate and get a human-readable description
  4. View the next 5 scheduled run times
  5. Use presets for common schedules or customize your own
quiz Frequently Asked Questions
What is a cron expression?
Cron is a time-based job scheduler. A cron expression is a string of 5 fields separated by spaces that defines when a job should run: minute, hour, day of month, month, and day of week.
Is this parser free to use?
Yes, ApexSofteck Tools's Cron Expression Parser is completely free. Parse unlimited cron expressions without any registration required.
What does the asterisk (*) mean?
An asterisk (*) means "every" for that field. For example, * in the minute field means every minute, and * in the hour field means every hour.
How do I run a job every X minutes?
Use the step value syntax: */X. For example, */15 in the minute field runs every 15 minutes. Other examples: */5, */10, */30.
Can I specify multiple values?
Yes! Use commas for multiple values (1,3,5) and hyphens for ranges (1-5). You can also combine them: 1-5,10,15-20.
tag Popular Tags