stringtotime
stringtotime copied to clipboard
A Java library for parsing just about any English textual datetime description into a Date object.
- While calculating date year value is not changing - Check below example - Issue 2017-07-31 + 005 month + 001 week = 2017-01-08 - Supposed to be 2018-01-08
Hey, I just noticed this issue while testing edge cases: ``` strtotime('2014-05-14 0:23') -> 2014-05-14 00:23:00.000 strtotime('2014-05-14 0:23p') -> 2014-05-14 12:23:00.000 strtotime('2014-05-14 1:23') -> 2014-05-14 01:23:00.000 strtotime('2014-05-14 1:23p') -> 2014-05-14...
Streamlined the code to function more as a static utility class and be compatible with Joda DateTime.
The GoogleCode page has a compiled 1.0.4 JAR available for download. http://code.google.com/p/stringtotime/ Is it possible to add compiled JARs to this project so that it can be simply dropped into...