Lua - Insert table values

2.7k Views Asked by At

I got a table of form let's say:

house = {
             ["Street 22"] = {
                        {name = "George", age = 20},
                        {name = "Pete", age = 25}
                      },
             ["Street 30"] = {
                        {name = "John", age = 32},
                    }
           }

And I want to insert programmatically a third house, that is key "Street 35", with a person's details, Nick and 30 let's say. I am relatively new to lua and don't know how to do this, I must use table.insert but I am having troubles following the above format... Some help please?

3

There are 3 best solutions below

0
On BEST ANSWER

Do it simple so:

house["Street 52"] = {{name = "Nick", age = 30}}
1
On

did you read this and get confused?

just try table.insert(house, {name = "Nick", age = 30}) and house[3] now contains the new element.

0
On

You could also mutate the third element of the houses table like this:

house[3]={name = "Nick", age = 30}