How to check date value in pandas dataframe through regex and pick wrong date type values?
date: df
Date_col
22-01-2016
2016-01-22
2016/01/22
2018-12-25 09:27:53
22-Jan-2016
abcd
1203
2072006
20030201
output:
Bad_Date
22-Jan-2016
abcd
1203
2072006
20030201
may be regular expression which allows only numbers,'-' ,'/', ':' would work out this problem.