The goal is to turn this (.txt file list):
111
222
333
Into this (variable):
111,222,333
The only option I could think of is manually assigning each line to an individual variable using "List processing" and then assigning them into a final variable like:
{var1},{var2},{var3}
The problem with that approach is that there are going to be 500 lines in total...
Is there a simpler way of achieving this?
111
222
333
Into this (variable):
111,222,333
The only option I could think of is manually assigning each line to an individual variable using "List processing" and then assigning them into a final variable like:
{var1},{var2},{var3}
The problem with that approach is that there are going to be 500 lines in total...
Is there a simpler way of achieving this?