Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
一連の単語があるとしましょう
txt = "The licenses for most software" length(txt) 1
strsplit を使用して、複合語に分割できます
t = unlist(strsplit(txt, split=" ")) length(t) 5
今、私は自分がしたことを元に戻したいと思っています。5 つの単語を元の文字列に再接続するにはどうすればよいですか?
ありがとう
paste(t,collapse=" ") # [1] "The licenses for most software"