An example would be item.Value = "{{..., ...}, {..., ...}, {..., ...}}", then convert it to a table. The only solution that I tried was to use gmatch '[^,]+', I’m not really familiar with format/string pattern:
for item in string.gmatch(items.Value, '[^,]+') do
But this does not recognize {}, and if I insert the item to the table and print it the output would be:
..., ..., ..., ..., ..., ... --- The output they are not sparate.
Of course I can just skip the next item, that did work but I want to use the gmatch.