Is there any way to convert below string to a standard R date class object?
Date_String = \"19th January 2020\"
Any pointer appreciated.
Lubridate can handle it:
> Date_String <- "19th January 2020" > lubridate::dmy(Date_String) [1] "2020-01-19"