Can somebody suggest any Library in Java which is capable of parsing Date/Time Calendar Event from Unstructured Data. Example
- Starts 10pm Tonight! Sunday feb 10th => 10/Feb/2013 10pm
- tomorrow (feb 10th) => 10/Feb/2013
- Sunday Feb 10\r\nwith daily screenings till Feb 16th
and so on
The input data comes from user, so he may enter data in any random format. I started of identifying all the possible token and do a regex match to phrase all tokens. I wonder if someone can suggest some Library in Java, which might actually help in parsing.
I ran through other post on SO, but they seem to suggest techniques, i wonder if somebody has a library.
Thanks