R: 粘贴两个没有 space 的字符串

R: Paste two strings without space

我想合并 R 中的以下两个字符串(并删除空格)。我正在使用 paste,但无法获得所需的结果。

a <- "big earth"
b <- "small moon"

c <- paste(a,b, sep = "")

我想要一个c <- "bigearthsmallmoon" 非常感谢您的帮助。

您可以使用 paste() 将字符串粘贴在一起。然后你可以使用 gsub() 删除所有空格:

gsub(" ", "", paste(a, b))
# [1] "bigearthsmallmoon"

c <- 粘贴(a, b, sep = "")