我想将字符串文本转换为表格,此文本必须分为字符.每个字符必须在表的单独值中,例如: a =“文字” – 将字符串(a)转换为表格(b) – 表格(b) b = {‘t’,’e’,’x’,’t’} 你可以使用s
> a =“文字”
> – 将字符串(a)转换为表格(b)
> – 表格(b)
> b = {‘t’,’e’,’x’,’t’}
t={} str="text" str:gsub(".",function(c) table.insert(t,c) end)
> a =“文字”
> – 将字符串(a)转换为表格(b)
> – 表格(b)
> b = {‘t’,’e’,’x’,’t’}
t={} str="text" str:gsub(".",function(c) table.insert(t,c) end)