There is a list which I would like to output into an excel file as a single string. I start with a list of characters.
url=\"http://eutils.ncbi.nlm.nih.gov
You can do it with str_c function
str_c
> library('stringr') > str_c(c('A','B','C'),collapse=',') [1] "A,B,C"