I have a column that looks like:
date
12/04/33 12:34 24
12/03/22 12:43 26
11/01/24 11:22 42
I want to strip everything after the first space so that my column looks like:
date
12/04/33
12/03/22
11/01/24
Does anyone know how to do this simply? Perhaps using stringr
?