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

OpenNLP(in Java) is unable to identify dates of the format "January 10th, 2010" or "January 10, 2010". I replaced all ','s in the text with an empty string "" before using OpenNLP tokenizer and it works fine for dates of the form "January 10, 2010". So, I tried to replace "th," with ",", but it did not work. How can we make sure that the dates of the above forms are identified with OpenNLP?

Thanks in advance

share|improve this question
after replacement in what format your date is? is it the same acceptible format – Jigar Joshi Jan 18 '11 at 10:28
if you do the "th" replace first, the resulting output should be identical for the two inputs. Hence if one format is working and the other isn't, your replaces aren't working as one would expect and you should see what the text is after all replacements have run. – Andrzej Doyle Jul 5 '11 at 15:55

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.