We can use regular expressions to separate
strsplit(str1, "(?<=[0-9]{2}:[0-9]{2})", perl = TRUE)
If we need to include "Date" as well
strsplit(str1, "(?<=[0-9]{2}/[0-9]{2}/[0-9]{2}, [0-9]{2}:[0-9]{2})", perl = TRUE)
If we do not need Date time, then
setdiff(strsplit(str1, "[0-9]{2}/[0-9]{2}/[0-9]{2}, [0-9]{2}:[0-9]{2}\\s*-\\s*")[[1]], "")
#[1] "kjadshjabsdjab" "bsadhi2342/342jbjsd"
#[3] "hkgsad/213/1sadjaa" "hsdjhakhjbk12/21s/sda:sdfjbj"
#[5] "jkadbsh2:/\\sdsadjv"
akrun source
share