We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am seeing issue with some dates which have the time before the year. For example:
As you can see the year gets changed and in the case of Feb 29 the year is changed to a non-leap year (2010) so the day moves to 1st March.
If I change the order and place the year before the time then the date is parsed correctly, for example:
However this pattern does not always cause the parsing to fail as a date such as "Fri Apr 22 10:54:33 2016" is parsed correctly.
This is a required date format for us as we use this to parse dates coming from emails which are returned in this format.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am seeing issue with some dates which have the time before the year. For example:
As you can see the year gets changed and in the case of Feb 29 the year is changed to a non-leap year (2010) so the day moves to 1st March.
If I change the order and place the year before the time then the date is parsed correctly, for example:
However this pattern does not always cause the parsing to fail as a date such as "Fri Apr 22 10:54:33 2016" is parsed correctly.
This is a required date format for us as we use this to parse dates coming from emails which are returned in this format.
The text was updated successfully, but these errors were encountered: