-
Notifications
You must be signed in to change notification settings - Fork 166
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support eurodate format (dd-mmm-yy with a digit month) #139
Open
dferstay opened this issue
Nov 10, 2021
· 2 comments
· Fixed by marcandjulien/dateparse#1 · May be fixed by #140 or #159
Open
Support eurodate format (dd-mmm-yy with a digit month) #139
dferstay opened this issue
Nov 10, 2021
· 2 comments
· Fixed by marcandjulien/dateparse#1 · May be fixed by #140 or #159
Comments
dferstay
pushed a commit
to dferstay/dateparse
that referenced
this issue
Nov 10, 2021
Some European dates are formatted as dd-mm-yyyy where day month and year are all digits. Fixes araddon#139 Signed-off-by: Daniel Ferstay <[email protected]>
What about teh sillyeh peoplez that put the month first? Its unambiguous if its the 13th day of the month, but otherwise what? |
I'm thinking that this is the same as
|
klondikedragon
added a commit
to itlightning/dateparse
that referenced
this issue
Dec 13, 2023
Incorporate PR araddon#140 from https://github.com/dferstay to fix araddon#139 PR is adapted to avoid duplicate code and validate format
klondikedragon
added a commit
to itlightning/dateparse
that referenced
this issue
Dec 13, 2023
Incorporate PR araddon#140 from https://github.com/dferstay to fix araddon#139 This also fixes araddon#155 (duplicate of issue 139) PR is adapted to avoid duplicate code and validate format.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We have support for dates of the form
dd-mmm-yy
wheremmm
is an alphanumeric literal; for example:However, there is a European date format that is similar where
mmm
is a digit; for example:The above fails to parse with:
The text was updated successfully, but these errors were encountered: