我需要拆分一个字符串并将其存储在一个数组中。在这里我使用了 string.gmatch 方法,它精确地分割了字符,但我的问题是如何存储在数组中?这是我的脚本。我的示例字符串格式:touchedSpriteName = Sprite,10,rose
objProp = {}
for key, value in string.gmatch(touchedSpriteName,"%w+") do
objProp[key] = value
print ( objProp[2] )
end
如果我 print(objProp) 它给出了准确的值。