Home
Random
Recent changes
Special pages
Community portal
Preferences
About Stockhub
Disclaimers
Search
User menu
Talk
Contributions
Create account
Log in
Editing
Module:Sandbox/Keysanger
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 = {} getArgs = require('Module:Arguments').getArgs builder = mw.html.create() local div_root = builder :tag('div') :cssText('float:left;border:2em;width:80%') :wikitext('This is div_root in main program\n') --local cntnt = div_root local cntnt = builder :tag('div') :cssText('text-align:left; padding:1em; font-size:95%; margin:2em; background:yellow;width:50%') :wikitext('that is cntnt in main program\n') function p.getArgNums(frame) -- Returns a table containing the numbers of the arguments that exist -- for the specified prefix. For example, if the prefix was 'data', and -- 'data1', 'data2', and 'data5' exist, it would return {1, 2, 5}. local nums = {} local prefix='a' cntnt:wikitext('Das ist nun cntnt innerhalb GetArgsNums<br>') for k, v in pairs(frame.args) do local num = tostring(k):match('^' .. prefix .. '([1-9]%d*)$') if num then table.insert(nums, tonumber(num)) end cntnt:wikitext( 'Key= ' .. k .. ' Value= ' .. v .. '<br/>' ) end -- Initially the table nums was returned table.sort(nums) -- I still don't know what to do with a table, so I return cntnt -- error: mv.log('testen der Funktion mw.log innerhalb einer Funktionsaufruf\n') cntnt:wikitext('Das ist nun cntnt am Ende von GetArgsNums\n') return tostring (cntnt) end function p.main (frame) local sOutputText = "" cntnt:wikitext('here is p.main in cntnt\n') div_root.wikitext('here is p.main in div_root\n') for iKey,sValue in pairs(frame.args) do sOutputText = sOutputText .. iKey .. sValue .. "β£\n" end div_root:wikitext(sOutputText) return tostring(div_root) 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:
Module:Arguments
(
edit
)
Module:Sandbox/Keysanger
(
edit
)
Module:Sandbox/Keysanger/doc
(
edit
)