Skip to content

gitqifan/CronExpressionTranslation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

CronExpressionTranslation

CronExpression translated into Chinese

Example:
input = 0 0 12 * * ?
output = 每天12:00:00

input = 0 15 10 ? * *
output = 每天10:15:00

input = 0 * 14 * * ?
output = 每天14点的每分钟的第0秒

input = * * 14 * * ?
output = 每天14点的每分钟的每秒

input = */5 * 14 * * ?
output = 每天14点的每分钟的每5秒

input = 0 0/5 14 * * ?
output = 每天14点的每5分钟的第0秒

input = 0 0/5 14,18 * * ?
output = 每天14,18点的每5分钟的第0秒

input = 0 0-5 14 * * ?
output = 每天14点的第0至5分钟的第0秒

input = 0 10,44 14 ? 3 WED
output = 每年3月的每个星期三的14点的第10,44分钟的第0秒

input = 0 10,44 14 ? 3,5,8,9 WED
output = 每年3,5,8,9月的星期三的14点的第10,44分钟的第0秒

input = 0 10,44 14 ? 3,5,8,9 MON,WED,FRI
output = 每年3,5,8,9月的星期一,星期三,星期五的14点的第10,44分钟的第0秒

input = 0 15 10 ? * MON-FRI
output = 每年星期一至星期五的10:15:00

input = 0 15 10 15 * ?
output = 每月15号的10:15:00

input = 0 15 10 15-19 * ?
output = 每月15号至19号10:15:00

input = 0 15 10 15 * MON-FRI
output = 每年星期一至星期五的15号的10:15:00

input = 0 15 10 L * ?
output = 每月最后一天的10:15:00

input = 0 15 10 ? * 6L
output = 每月最后一个星期五的10:15:00

input = 0 15 10 ? * 6#3
output = 每月第3个星期五的10:15:00

input = 0 * * * * ?
output = 每分钟的第0秒

input = 0,1,2,3 0/5 14,18 3,5,6 * ?
output = 每月3,5,6号的14,18点的每5分钟的第0,1,2,3秒

input = 0 15 10 * * ? 2005
output = 2005年每天10:15:00

input = 0 * 14 * * ? 2012
output = 2012年每天14点的每分钟的第0秒

input = 0 * * * * ? 2012
output = 2012年每分钟的第0秒

input = 0 * * * * ? *
output = 每分钟的第0秒

input = 0 15 10 15 * * 2002
output = 2002年每月15号的10:15:00

input = 0 15 10 15 * * *
output = 每月15号的10:15:00

input = 0 15 10 ? * 6L 2002-2005
output = 2002至2005年每月最后一个星期五的10:15:00

About

CronExpression translated into Chinese

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages