Answers for "split strings by space in r"

R
0

split strings by space in r

unlist(unique(strsplit("This is my test string.", " ")))
[1] "This"    "is"      "my"      "test"    "string."
Posted by: Guest on April-06-2021

Browse Popular Code Answers by Language