Join elements into a string
convert elements of vector v (and all following arguments) in strings and join them using sep as separator.
join(sep, v, ...)
sep
: A string used as a separatorv
: A string vector to be joined...
: other variables to be converted to strings and joinedA joined string
join(" ", c("Hello", "World"))