Open In App

Concatenate Two Strings in R programming - paste() method

Last Updated : 28 May, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
paste() method in R programming is used to concatenate the two string values by separating with delimiters.
Syntax: paste(string1, string2, sep=) Return: Returns the concatenate string.
Example 1: Python3
# R program to concatenate two strings

# Given Strings
string1 <- "Geeks"
string2 <- "Geeks"

# Using paste() method
answer <- paste(string1, string2, sep=" For ")

print(answer)
Output:
[1] "Geeks For Geeks"
Example 2: Python3
# R program to concatenate two strings

# Given Strings
string1 <- "I Love"
string2 <- "R programming"

# Using paste() method
answer <- paste(string1, string2, sep=" ")

print(answer)
Output:
[1] "I Love R programming"

Next Article
Article Tags :

Similar Reads