I have a string like "abcde"
and want it split into a vector like
> c("a", "b", "c", "d", "e")
[1] "a" "b" "c" "d" "e"
I found one way that I'll post as an answer but I am hoping someone else has a simpler way to do this, either in base R or using a package.