| list_in_quote | R Documentation |
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.
list_in_quote(str, sepChar = ",")
str |
a list or vector of strings or numeric. |
sepChar |
a string. The string is a separator between each element of list of strings. |
None.
Return a vector of strings between quoted and separated by commas.