Home
Random
Recent changes
Special pages
Community portal
Preferences
About Stockhub
Disclaimers
Search
User menu
Talk
Contributions
Create account
Log in
Editing
Module:Sandbox/Wnt/DisplayLuaTableContents
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
local p={} local debuglog = "" function p.flat(t) local todo = {t} local pointer = 1 local flat = {} local marked = {} marked[t] = true while todo[pointer] do for i, j in pairs(todo[pointer]) do if ((type(j) == table) and (not marked[j])) then debuglog = debuglog .. "marking" .. tostring(j) marked[j] = true table.insert(todo, j) end if (not flat[i]) then debuglog = debuglog .. "new item" .. tostring(i) flat[i] = {j = true} else if (not flat[i][j]) then flat[i][j] = true end end end pointer = pointer + 1 end debuglog = debuglog .. tostring(#flat) return flat end function p.tostring(t, delimiter) if not delimiter then delimiter = "" end local flat = p.flat(t) local outarray = {} for i, j in pairs(flat) do debuglog = debuglog .. tostring(i) .. tostring(j) local kk = {} for k in pairs(j) do table.insert(kk, k) end table.insert(outarray, table.concat(kk, delimiter)) end return table.concat(outarray, delimiter) end function p.demo(frame) local a = {j=1, 2, 3} table.insert(a,a) -- a[a] = a -- (this may be just too crazy; getting "attempt to call a table value") return p.tostring(a)..debuglog end function p.main(frame) local args=frame.args local pargs=frame.getParent(frame) local dispvar="mw" if pargs then dispvar=pargs.dispvar or pargs[1] or dispvar end if args then dispvar=args.dispvar or args[1] or dispvar end local base=_G[dispvar] local novar, containssomething if base then else base={};novar=yes end local output="''Contents of the array '''''" .. tostring(dispvar) .. "''':" if novar then output = output .. "<u>nil</u>." end local ns=0 local count=0 for i,j in pairs(base) do containssomething="yes" output=output .. "<br />mw." .. tostring (i) .. ":" .. tostring(j) if tostring(j)~= "table" then j={} end for a,b in pairs(j) do output=output .. "<br />mw." .. tostring(i) .. "." .. tostring(a) .. ":" .. tostring(b) if tostring(b)~="table" then b={} end for x,y in pairs(b) do output=output .. "<br />mw." .. tostring(i) .. "." .. tostring(a) .. "." .. tostring(x) .. ":" .. tostring(y) if tostring(y)~="table" then y={} end for w,z in pairs(y) do output=output .. "<br />-->" .. tostring(w) .. ":" .. tostring(z) if tostring(z)~="table" then z={} end for u,v in pairs(z) do output=output .. "<br />----->" .. tostring(u) .. ":" .. tostring(v) end end end end end --local getc=mw.title.getcontent --output=output .. "<br />P.S.: mw.title.getcontent is:" .. tostring(getc) --if tostring(getc) == "function" then output = output .. "<br />" .. tostring (getc(mw.title)) end if containssomething then else output = output .. "<br />''No pairs(" .. tostring(dispvar) .. ") found!''" end return output end return p
Summary:
Please note that all contributions to Stockhub may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Stockhub:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Template used on this page:
Module:Sandbox/Wnt/DisplayLuaTableContents/doc
(
edit
)