find_dates

find_dates(text)

Find Dates. mm-dd-yyyy format

Parameters

text: str Text selected to apply transformation

Examples:

sentence="Todays date is 04/28/2020 for format mm/dd/yyyy, not 28/04/2020"
find_dates(sentence)
    >>> [('04', '28', '2020')]