Cron Expression Humanizer

Konvertieren Sie Cron-Ausdrücke in Beschreibungen des Menschen, die sich für Menschen lesen und die nächsten Ausführungszeiten vorhersagen

Choose between 5-field standard format or 6-field extended format with seconds
Status:
Gültig
Load a random sample cron expression to test
Clear the cron expression input and results

Cron -Ausdruck

5-Feld-Format (von links nach rechts):

Minute:0-59
Stunde:0-23
Tag des Monats:1-31
Monat:1-12
Woche der Woche:0-7 (0 und 7 = Sonntag)

Menschliche Beschreibung

Die menschliche lesbare Beschreibung wird hier erscheinen ...

Cron Expression Guide

Sonderzeichen

* - Jeder Wert (Wildcard)
? - Kein spezifischer Wert (nur Tagesfelder)
- - Wertebereich (z. B. 1-5)
, - Liste der Werte (z. B. 1,3,5)
/ - Schrittwerte (z. B. */2)

Häufige Beispiele

0 9 * * 1-5 - Wochentage um 9 Uhr morgens
30 14 1 * * - 1. des Monat um 14:30 Uhr
0 */6 * * * * * - Alle 6 Stunden
0 0 * * 0 0 - Jeden Sonntag um Mitternacht

Cron Expression Humanizer - Cron Job Scheduler Tool

Cron expressions define schedules using compact syntax. This page translates cron into human‑readable text and helps you validate when jobs will run, including edge cases across timezones.

What is a cron expression?

A standard 5‑field cron uses minutes, hours, day of month, month, and day of week. Extended formats add seconds or year. Wildcards, ranges, lists, and step values control frequency—for example, 0 0 * * 1 runs every Monday at midnight.

How humanization works

The tool parses your expression, expands fields into actual run times, and renders a friendly description. It highlights conflicts, shows upcoming run instances, and can simulate different timezones so you see the real behavior in production.

About the Cron Humanizer

Use it to review schedules during code review, communicate timing to non‑technical stakeholders, and ensure that daylight saving transitions won’t break expectations.

Readable schedules reduce operational toil. Document intent alongside expressions and verify edge cases before deploying.