I'm trying to extract dates in any format from a pandas column (the date is a part of a longer string).
I have found this answer which does it outside of pandas, but I'm not sure how to use that to do it in a pandas column.
The dates can be in various formats, for example:
footballer, born October 1989
footballer, born 1900s
footballer, born 29 December 1987
Brazilian footballer, born 1983
31/02/1901
16 May 2019
Is it possible to have any date format and parts of dates as a pandas column with a date type?