Open main menu
Home
Random
Donate
Recent changes
Special pages
Community portal
Preferences
About Stockhub
Disclaimers
Search
User menu
Talk
Contributions
Create account
Log in
Editing
Module:Sort table
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 = {} function p.asc(frame) if tonumber(frame.args[1]) > 1 then local before = string.rep("[%|\n]%|(.-)", tonumber(frame.args[1]) - 1) else local before = '' end local indexed_rows sorted_table = '' local key = 0 return frame.args[2] -- for row in mw.text.gsplit(frame.args[2], "\n|-", true) do -- key = row:gmatch(before.."[%|\n]%|(.-)[%|\n]%|") -- indexed_rows[key] = {key, row} -- end -- table.sort(indexed_rows) -- for key, row in pairs(indexed_rows) do -- sorted_table = sorted_table..'\n|-'..row -- end -- return sorted_table end function p.desc(frame) local rows = mw.text.split( frame.args[2], "\n|-", true) for row in rows do indexed_rows[row:gmatch(string.rep("[%|\n]%|(.-)", frame.args[1] - 1).."[%|\n]%|(.-)[%|\n]%|")] = row end table.sort(indexed_rows, function (a, b) return a > b end ) return table.concat( indexed_rows[2], "\n%|%-" ) 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)
Templates used on this page:
Template:Tl
(
edit
)
Module:Sort table/doc
(
edit
)