gpt4 book ai didi

r - 如何撤消 strsplit 将多个字符合并为一个

转载 作者:行者123 更新时间:2023-12-02 18:32:36 25 4
gpt4 key购买 nike

假设我有一串单词

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"

关于r - 如何撤消 strsplit 将多个字符合并为一个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21620635/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com