Builds the regular expression based on the given format.
The date format needs to be checked against.
OptionalignoreCase: booleanShould the test executed in case sensitive or not.
OptionalshouldGroup: booleanShould the regular expression grouped or not.
The regular expression based on the given format.
Loads the specific configuration for the given locale. It contains the month and day names and locale specific date format, like: shortDate, etc.
The locale needs to be loaded in two-digits format.
It tests whether the given dateString matches the given date format and returns the matched parts of the dateString. The test is case sensitive, be default, but with ignoraCase parameter it could be set to case insensitive.
The date format needs to be checked against.
The date string needs to be fixed.
OptionalignoreCase: boolean = falseShould the test executed in case sensitive or not.
The matched groups or null if it doesn't match.
It tests whether the given dateString matches the given date format. The test is case sensitive, be default, but with ignoraCase parameter it could be set to case insensitive.
The date format needs to be checked against.
The date string needs to be fixed.
OptionalignoreCase: boolean = falseShould the test executed in case sensitive or not.
True if the dateString matches the given format.
It provides the ability to compare date string with custom date format expression.