Cron parser
Paste an expression from a crontab, a CI file or a Spring annotation. You get it translated to plain English, each field decoded, and the next runs listed.
At 22:00, on weekdays (Monday through Friday).
Next 10 runs
Calculating in your browser…
Times are computed in your browser for the selected zone and are informational. The server that runs the job uses its own zone (often UTC) and cron flavour, so verify there.
Same schedule in other dialects
0 22 * * 1-50 0 22 ? * MON-FRI0 0 22 ? * MON-FRIcron(0 22 ? * MON-FRI *)Reading the translation
Each box under the expression is one field. Click it to see which token it holds; red means that field broke validation. The sentence underneath is built from the parsed values, not from pattern matching on the text, so unusual combinations like 5-59/15 */3 1,15 * * are described correctly.
Symbols you’ll see: * any value, , a list, - a range, / a step. The syntax guide covers each with examples. If an expression fails, the cron validator explains exactly what’s wrong and can suggest a fix.