Visually build schedule expressions, decode each field, and preview the next 5 run times
Build cron expressions visually, decode every field, and preview the next 5 run times.
了解 Cron 表达式结构、字段语法与常见问题。How cron expressions work, field syntax, and answers to common questions.
标准 Cron 表达式由 5 个字段组成,以空格分隔:分 时 日 月 周。例如 0 9 * * 1 表示每周一 9:00 执行。
A standard cron expression has 5 space-separated fields: minute hour day-of-month month day-of-week. For example 0 9 * * 1 runs every Monday at 9:00.
支持 *(任意)、*/n(每 n 单位)、a-b(范围)、a-b/n(范围步进)与 a,b,c(列表)五种写法。
Supported: * (any), */n (every n), a-b (range), a-b/n (range step) and a,b,c (list).
当前支持标准 5 字段(分 时 日 月 周),最常用且兼容 crontab。Currently 5 fields (minute hour day month weekday), the most common and crontab-compatible.
标准语义下两者都非 * 时取"或":任一命中即执行。When both are restricted, standard cron treats them as OR - either match triggers.
按本地时区逐分钟计算,并处理了 2 月 30 日等不存在日期。Computed minute-by-minute in your local timezone, handling impossible dates like Feb 30.