powered by
implode(strings, sep = "", finalSep = NULL)
character
paste
implode(1:3, ", ") # "1, 2, 3" implode(1:3, ", ", "and ") # "1, 2 and 3" implode(1:2, ", ", "and ") # "1 and 2"
Run the code above in your browser using DataLab