libSaveTableToFile
On the Lua Users Wiki are a few solutions for serializing tables. This entry is about the one called Save table to file.
It provides two functions:
- table.save(tbl, filename) saves a table to a text file.
- table.load(filename) generates a table from the output file from
table.save()
.
They allow you to easily save and load complex data. It uses Lua syntax for the data files, so it is easy to edit by hand.
It is licensed under the same license as Lua and available here.
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info