akoumjian / datefinder

Find dates inside text using Python and get back datetime objects
http://datefinder.readthedocs.org/en/latest/
MIT License
635 stars 167 forks source link

strict mode is broken #150

Open the1gofer opened 3 years ago

the1gofer commented 3 years ago

`import datefinder

test_string = "September 6, 1922"

matches = datefinder.find_dates(test_string, strict=True)

for match in matches: print(match)`

produces no matches. In fact, I can find no combination that yeilds results with that flag set to true.

varun-2108 commented 3 years ago

I am also facing the same issue with the latest version. This was working fine in older version.