up vote 0 down vote favorite
share [g+] share [fb]

T = { {Name = "Mark", HP = 54, Breed = "Ghost"}, {Name = "Stan", HP = 24, Breed = "Zombie"}, {Name = "Juli", HP = 100, Breed = "Human"}},

Questions:

How would I Print just the names?

and

How can I sort it by HP?

link|improve this question

60% accept rate
feedback

1 Answer

up vote 2 down vote accepted

You need to iterate over the table by using either the pairs or ipairs function to print the name. ipairs iterates from 1 to N (numeric indices only), while pairs iterates over every element, in no defined order.

> T = { {Name = "Mark", HP = 54, Breed = "Ghost"}, {Name = "Stan", HP = 24, Breed = "Zombie"}, {Name = "Juli", HP = 100, Breed = "Human"}}
> for _,t in ipairs(T) do print(t.Name) end
Mark
Stan
Juli

Then you can use the table.sort function to sort the table in-place:

> table.sort(T, function(x,y) return x.HP < y.HP end)
> for _,t in ipairs(T) do print(t.Name, t.HP) end
Stan    24
Mark    54
Juli    100

The second argument to table.sort is a comparison function of your choice; in this case, we only wanted to compare the HP values.

link|improve this answer
1  
You have reversed the meanings for ipairs() and pairs(). ipairs() iterates the numeric indices, and pairs() iterates over every element. – gwell Nov 9 '09 at 17:25
Oops, thanks for catching that. Fixed. – Mark Rushakoff Nov 9 '09 at 17:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.