Cron Job Expression Parser

Translate complex cron strings into human-readable schedules.

Standard Cron Format

* * * * *

  • 1st * = Minute (0 - 59)
  • 2nd * = Hour (0 - 23)
  • 3rd * = Day of the month (1 - 31)
  • 4th * = Month (1 - 12)
  • 5th * = Day of the week (0 - 6) (Sunday to Saturday)

Common Examples