I have a script which generates tags from the filename.
Is there a way to split a string when assigning using as a dynamic tag?
Given the following string (from a script): "a,b,c"
I would like to create the tags |a|, |b|, |c|. Right now it creates |a,b,c|.
(\n and ; didn't work either)
Right now I return each tag as a single variable which works as long as tags <= variables. But it doesn't feel right.