I was trying to extract date from strings using datefinder. I observed that datefinder.find_dates() is not able to extract date from a string when the date is followed by "last" ,"until"
text= "Created 2009.10.20last-modified"
list(datefinder.find_dates(text))
O/P : []
text= "Created 2009.10.20until-modified"
list(datefinder.find_dates(text))
O/P : []
text= "Created 2009.10.20registration"
list(datefinder.find_dates(text))
O/P : [datetime.datetime(2009, 10, 20, 0, 0)]
Are they reserved words in datefinder? Can someone please advise on how to handle such strings?