当前位置 : 主页 > 网络编程 > lua >

Lua – 将字符串转换为表格

来源:互联网 收集:自由互联 发布时间:2021-06-23
我想将字符串文本转换为表格,此文本必须分为字符.每个字符必须在表的单独值中,例如: a =“文字” – 将字符串(a)转换为表格(b) – 表格(b) b = {‘t’,’e’,’x’,’t’} 你可以使用s
我想将字符串文本转换为表格,此文本必须分为字符.每个字符必须在表的单独值中,例如:

> a =“文字”
> – 将字符串(a)转换为表格(b)
> – 表格(b)
> b = {‘t’,’e’,’x’,’t’}

你可以使用string.gsub函数

t={}
str="text"
str:gsub(".",function(c) table.insert(t,c) end)
网友评论