Question

Let's say I have a string of words

txt = "The licenses for most software"
length(txt)
1

I can use strsplit to split it into its composite words

t = unlist(strsplit(txt, split=" "))
length(t)
5

Now I want to undo what I did. How can I reconnect 5 words together into the original string?

Thanks

Was it helpful?

Solution

paste(t,collapse=" ") 
# [1] "The licenses for most software"
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top