Element-wise concatenation of string vector in R
Element wise concatenation of two vectors means concurrently taking values from two vectors and joining or concatenating them into one. For this paste() function is used in the R programming language. Syntax: paste(vector1,vector2,....,vectorn) Where, vectors are the inputs to paste function Example