Trying to convert a Arraylist of strings into one big comma separated string.
However when I use the
String joined = TextUtils.join(\", \", partici
Try with kotlin
val commaSeperatedString = listOfStringColumn.joinToString { it -> "\'${it.nameOfStringVariable}\'" }
// output: 'One', 'Two', 'Three', 'Four', 'Five'