3

假设我有一串单词

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

我可以使用 strsplit 将其拆分为复合词

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

现在我想撤销我所做的。如何将 5 个单词重新连接到原始字符串中?

谢谢

4

1 回答 1

6
paste(t,collapse=" ") 
# [1] "The licenses for most software"
于 2014-02-07T06:21:10.233 回答