Whats the best way to convert a list(of string) to a string with the values seperated by a comma (,)
,
A simple solution:
dim str as string = "" for each item as string in lst str += ("," & item) next return str.substring(1)
It takes off the first char from the string (",")
(",")