Take a list of strings,
quotes each string,
then concat all quoted strings in a single long string
by separating each one by the given separator sepChar,
then segment this long string into strings of a given length nChar.
Usage
list_in_quote(str, sepChar = ",")
Arguments
str
a list or vector of strings or numeric.
sepChar
a string.
The string is a separator between each element of list of strings.
Value
Return a vector of strings between quoted and separated by commas.