I have a following dataframe
column 1 Description Extracted Data
date January 15,2020 is important day
I want to get following result
column 1 Description Extracted Data
date January 15,2020 is important day January 15,2020
df.loc[df['column 1']=='date','Extracted Data']=df['Description'].str.extract(r'((January)|[/. ])|(\d{1,2}|[/., ]|\d{4})')
but I ma not getting desired result.Instead, i ma getting dataframe with all NaN values. How can I fix this?