Cron अभिव्यक्ति मानवीकरण

Cron अभिव्यक्तियों को मानव-पठनीय विवरण में बदलें और अगले निष्पादन समय का अनुमान लगाएं

Choose between 5-field standard format or 6-field extended format with seconds
स्थिति:
वैध
Load a random sample cron expression to test
Clear the cron expression input and results

Cron अभिव्यक्ति

5-फ़ील्ड प्रारूप (बाएं से दाएं):

मिनट:0-59
घंटा:0-23
महीने का दिन:1-31
महीना:1-12
सप्ताह का दिन:0-7 (0 और 7 = रविवार)

मानव विवरण

मानव-पठनीय विवरण यहाँ दिखाई देगा...

Cron अभिव्यक्ति गाइड

विशेष वर्ण

* - कोई भी मान (वाइल्डकार्ड)
? - कोई विशिष्ट मान नहीं (केवल दिन फ़ील्ड)
- - मानों की श्रेणी (जैसे, 1-5)
, - मानों की सूची (जैसे, 1,3,5)
/ - चरण मान (जैसे, */2)

सामान्य उदाहरण

0 9 * * 1-5 - सप्ताह के दिन सुबह 9 बजे
30 14 1 * * - महीने की 1 तारीख को दोपहर 2:30 बजे
0 */6 * * * - हर 6 घंटे
0 0 * * 0 - हर रविवार आधी रात

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.