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"
相關用法
- R語言 strsplit()用法及代碼示例
- R語言 noquote()用法及代碼示例
- R語言 format()用法及代碼示例
- R語言 setdiff()用法及代碼示例
- R語言 intersect()用法及代碼示例
- R語言 setequal()用法及代碼示例
- R語言 union()用法及代碼示例
- R語言 outer()用法及代碼示例
- R語言 cov()用法及代碼示例
- R語言 cor()用法及代碼示例
- R語言 merge()用法及代碼示例
- R語言 julian()用法及代碼示例
- R語言 identical()用法及代碼示例
- R語言 nchar()用法及代碼示例
- R語言 binom.test()用法及代碼示例
注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 Concatenate Two Strings in R programming – paste() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。