Cron Expression Parser

Cron Syntax Reference

Cron expressions consist of 5 fields separated by spaces: * * * * *

FieldAllowed ValuesSpecial Characters
Minute0-59

* - any value

, - value list separator

- - range of values

/ - step values

Hour0-23
Day of month1-31
Month1-12
Day of week0-6 (0 is Sunday)

Examples:

  • * * * * * - Run every minute
  • 0 * * * * - Run once every hour at the start of the hour
  • */15 * * * * - Run every 15 minutes
  • 0 0 * * 1 - Run at midnight on Mondays

Note: All processing is done entirely in your browser. Your data is never uploaded to any server, ensuring complete privacy and security.