# NOT RUN {
# strsplit returns the results inside a list element
out = strsplit("ABC", split="")
out
# I.e....
out[[1]]
# If this is annoying/ugly in the code, use strsplit3:
out = strsplit3("ABC", split="")
out
# }
Run the code above in your browser using DataLab