當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。