fork download
  1. x <- c("C 10.1 C 12.4","C 12", "C 45.5 C 10")
  2. unlist(strsplit(x, "(?<=\\d)\\s+(?=C)", perl=TRUE))
Success #stdin #stdout 0.22s 39304KB
stdin
Standard input is empty
stdout
[1] "C 10.1" "C 12.4" "C 12"   "C 45.5" "C 10"