mytabel = {"lua"}
mytabel[1]=nil;--将这个键值对进行销毁,该表的一号位置为nil
mytabel = nil;--释放表占用的内存
拼接:
mytabel = {"lua","C#","java",1};
print(table.concat(mytabel,“ ”,2,4));--对表中的字符串进行一个拼接,第二个参数为分隔符,第三个和第四个参数为指定拼接索引区域
插入和移除:
table.insert(mytabel,"PHP");--插入数据
table.insert(mytabel,2,"Boo");--指定位置插入数据
table.remove(mytabel,2);--移除2号位置
表的排序:
table.sort(mytabel);--字母排序按照ASSII码进行排序