I have multiple strings that I would like to add each as an item into a list.
I tried separating them with commas with the "Add Item to list" Action, but it treats them all as one long item. I have tried several formats.
abc, def, ghi
"abc", "def", "ghi"
%"abc"%, %"def"%, %"ghi"%
But they are all added to item 0
Interestingly enough, when adding exiting variables, it does work.
%Matches[0]%, %Matches[1]%
I doubt the only option is to use a separate action for each. Or alternatively import them from a csv file.
Any help would be greatly appreciated.