当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 paste()用法及代码示例


paste()R 编程中的方法用于通过分隔符分隔来连接两个字符串值。

用法: paste(string1, string2, sep=)

返回:返回连接字符串。

范例1:


# R program to concatenate two strings
  
# Given Strings
string1 <- "Geeks"
string2 <- "Geeks"
  
# Using paste() method
answer <- paste(string1, string2, sep=" For ")
  
print(answer)

输出:

[1] "Geeks For Geeks"

范例2:


# R program to concatenate two strings
  
# Given Strings
string1 <- "I Love"
string2 <- "R programming"
  
# Using paste() method
answer <- paste(string1, string2, sep=" ")
  
print(answer)

输出:

[1] "I Love R programming"

相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Concatenate Two Strings in R programming – paste() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。