HangfireIO / Cronos

A fully-featured .NET library for working with Cron expressions. Built with time zones in mind and intuitively handles daylight saving time transitions
MIT License
974 stars 114 forks source link

Support for F (First) in non-standard characters #31

Closed Cynicszm closed 3 years ago

Cynicszm commented 3 years ago

Hi,

The documentation lists support for non-standard characters like L, W, # and their combinations.

Could F (First) be added?

Thanks

odinserj commented 3 years ago

Could you tell me where you see the F symbol in action, e.g. in what project? It is possible to specify first weekday via the the following expression: 0 0 1W * *, also for example third weekday gives the 0 0 3W * * expression. I've checked Wikipedia and original Quartz documentation, but unfortunately found nothing about the F character.

Cynicszm commented 3 years ago

Thank you it looks like it was added as a custom extension and we should be using the expressions above.

Appreciate the quick response.