Hello all,
I have the following code to create an "Info" collection with a column called "AttributesNew" :

The issue I'm having is under my "AttributesNew" column, the text it results in has a "," in the beginning and end of the string of text. Here's an example of an output it'd give:
,one,two,three,four,five,
I'd like to remove the first both the first and last comma of that string of text so that the output is this:
one,two,three,four,five
How would I modify my existing code to account for this functionality? I've messed around with using the Left() and Len() function but no luck as of yet.
Thank you!