Open In App

Concatenate Two Strings in R programming – paste() method

Last Updated : 28 May, 2020
Improve
Improve
Like Article
Like
Save
Share
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:




# 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:




# 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"

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads