Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to extract dates from a string in Java?

I have 500+ string with different data. In them, there can be:
"... period from 08.23.2011 - 09.05.2011..."
and also:
"...period ends 06.09.2011...".

It's not certain that the above string are there, but they can be.

Is it possible to extract the 3 dates and get them in Date format?

share|improve this question
your best bet might be regex, just like Bozho said – Mahmoud Hossam Mar 11 '11 at 7:38

5 Answers

You can extract them with regex first: \d{2}\.\d{2}\.\d{4} and then parse each match with SimpleDateFormat - new SimpleDateFormat("dd.MM.yyyy").parse(dateString)

share|improve this answer
Will it be possible to have the "key-code-words": "period from REGEX - REGEX" and "period ends REGEX" as security check that it is the correct dates I'm extracting? – user649542 Mar 11 '11 at 7:47
@user649542 yes, regex allows that. – Bozho Mar 11 '11 at 7:55
Thanks. That did the trick :) – user649542 Mar 11 '11 at 8:16
@user649542 if so, feel free to mark the answer as accepted :) – Bozho Mar 11 '11 at 8:22

Have a look at this example.

share|improve this answer

I would use a simple regex to get "likely" dates out first, and then parse them more carefully (ideally with Joda Time, IMO). I'd start off with a regex of \b\d{2}\.\d{2}\.\d{4}\b (plus escaping for the Java string of course).

(The \b bit matches a word boundary, so 12345.45.12345 won't match.)

You can make your regex more selective, of course, but it would be very hard to make it do all the validation required (imagine trying to encode all the rules for leap years in a regex) - so if you're going to need to validate as you parse anyway, there's not a lot of point in making the regex complicated.

share|improve this answer

You mean String and not text (this is Java)

Create a String Object to represent the text and then parse it into a newDateFormat class:

SimpleDateFormat = new SimpleDateFormat("dd.MM.yyyy").parse(yourString)
share|improve this answer

In essence regex is the answer for recognition, but there are lots and lots of ways to express dates, so if you want a robust, well-developed solution. There's then a second phase of interpretation, which needs more flexibility than what JodaTime will parse out of the box. So for a robust solution, you probably want to use one of the systems that have been built in the natural language processing community, such as SUTime, HeidelTime or GUTime.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.