Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
2

How do I print the names of tables?

Asked by 6 years ago

Let's say I have this table:

1local Rarities = {
2    ["Common"] = {"Oof1", "Oof2"},
3    ["Common2"] = {"Oofa", "Oofb"},
4}
5 
6for i, v in pairs(Rarities) do
7    print(v)
8end

of course, this would print something like Table:9B9B9B9B

What I would like simply is to output "Common".

1 answer

Log in to vote
5
Answered by 6 years ago
Edited 6 years ago

If you simply want the indexes, then you should be printing i, not v If you needed to print in the values inside of i, then you would simply unpack it.

The reason why it is printing table's memory location is because

I) You are printing the value of index, not the index itself

II) Simply because you are printing the table, which if you wanted to get it's value, you would have to unpack it. You have a matrix. That is why.

1local Rarities = {
2    ["Common"] = {"Oof1", "Oof2"},
3    ["Common2"] = {"Oofa", "Oofb"},
4}
5 
6for i, v in pairs(Rarities) do
7    print(i)
8    print(unpack(v));
9end

would print

1--[[
2Common2
3Oofa      Oofb
4Common
5Oof1      Oof2
6]]

Edit: Whoops forgot Lua 5.1 uses unpack not table.unpack.

1
Works like a dream! Thank you! Marmalados 193 — 6y
Ad

Answer this question