I had been trying to parse the code below with not good results. The function doesn´t recognize am/pm.
library (tidyverse)
library (lubridate)
c = c("28 de julio de 2020 6:02 PM Hora de Montevideo")
dmy_hm (c)
#with this unsatisfactory result
[1] "2020-07-28 06:02:00 UTC"
The time must be 18:02:00. Clearly I'm doing something wrong with LOCALE. Could someone helpme?
Thanks