假设我有一串单词
txt = "The licenses for most software"
length(txt)
1
我可以使用strsplit将其拆分为复合词
t = unlist(strsplit(txt, split=" "))
length(t)
5
现在我要撤消我的所作所为。如何将5个单词重新连接到原始字符串?
由于
答案 0 :(得分:4)
paste(t,collapse=" ")
# [1] "The licenses for most software"