lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Tuesday 09, Anselmo Junior wrote:
> Oh yeah, and I recently try to do that and work. Only need get what key in
> the script is in use to get the values.

Method objLen in the LuaState class:
public int objLen(int idx)

Looks like you have to use the Lua stack idx of the table.

For strings it will return the string length, for tables it will return the 
results of the length operator '#'...
See more here:
http://www.lua.org/manual/5.1/manual.html#lua_objlen

-- 
Robert G. Jakabosky