查看“模块:SplitFormat”的源代码
←
模块:SplitFormat
跳到导航
跳到搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看和复制此页面的源代码。
local p = {} function p.split(frame) local args = (frame == mw.getCurrentFrame() and frame.args) or frame local sep0 = (args.sep0 or ",") local sep1 = (args.sep1 or ",") local fmt = (args.fmt or "$") local res = {} local func = function(w) local w = string.gsub(w, "^%s*(.+)%s*$", "%1") w = string.gsub(fmt, "%$", w) table.insert(res, w) end local expand_tem = function() if args.template == "" then for i = 1, #res do res[i] = frame:expandTemplate{ title = res[i], args = {} } end elseif args.template then for i = 1, #res do res[i] = frame:expandTemplate{ title = args.template, args = { res[i] } } end end end string.gsub(args.str, string.format("([^%s]+)", sep0), func) expand_tem() return table.concat(res, sep1) end function p.apply_template(frame) local args = (frame == mw.getCurrentFrame() and frame.args) or frame local res = {} local func = function(w) local w = string.gsub(w, "^%s*(.+)%s*$", "%1") if string.find(w, "=") ~= nil then local eq = string.find(w, "=") res[string.sub(w, 1, eq - 1)] = string.sub(w, eq + 1) end end string.gsub(args.params, string.format("([^%s]+)", "|"), func) return frame:expandTemplate{ title = args.template, args = res } end function p.enhance_icons(frame) local args = (frame == mw.getCurrentFrame() and frame.args) or frame local res = {} local func = function(w) local i, t w = string.gsub(w, "^%s*(.+)%s*$", "%1") i, t = string.match(w, '^(%d+)(%D+)$') if t == "宝具" or t == "技能" then table.insert(res, {i, t}) end end string.gsub(args.str, "([^,]+)", func) local size_px = (#res > 7) and 46 or 60 res_str = "" for i = #res, 1, -1 do res_str = res_str .. frame:expandTemplate{ title = "从者强化图标", args = { res[i][1], res[i][2], ["size"] = size_px } } end return res_str end function p.del_smw(frame) local args = (frame == mw.getCurrentFrame() and frame.args) or frame local res = (args.str or "") res = string.gsub(res, "%[%[SMW::on%]%]", "") res = string.gsub(res, "%[%[SMW::off%]%]", "") return res end function p.str_decode(frame) local args = (frame == mw.getCurrentFrame() and frame.args) or frame return mw.text.decode(args.str, true) end function p.apply_template2(frame) local args = (frame == mw.getCurrentFrame() and frame.args) or frame local sep0 = (args.sep0 or ",") local sep1 = (args.sep1 or ",") local sep2 = (args.sep2 or ",") local other = {} local func = function(w) local w = string.gsub(w, "^%s*(.+)%s*$", "%1") if string.find(w, "=") ~= nil then local eq = string.find(w, "=") other[string.sub(w, 1, eq - 1)] = string.sub(w, eq + 1) end end local res={} local sdebug='' for i,v in ipairs(mw.text.split(args.str,sep0,true)) do other={} string.gsub(args.other, string.format("([^%s]+)", sep1), func) local temp ={} if string.find(v,'=')~=nil then temp = other string.gsub(v, string.format("([^%s]+)", sep1), func) else temp = mw.text.split(v,sep1,true) end for k, v in pairs( other ) do temp[k] = v end table.insert(res,frame:expandTemplate{title=args.template,args=temp}) end return table.concat(res,sep2) end --这个函数用于在set前将html tag屏蔽 function p.killHtml(frame) local args=(frame==mw.getCurrentFrame()and frame.args)or frame local str=args.str str=string.gsub(str,'<','<'); str=string.gsub(str,'>','>'); str=string.gsub(str,'"','"'); str=string.gsub(str,"'",'''); return str end --替换参数 function p.replace(frame) local args=(frame==mw.getCurrentFrame()and frame.args)or frame local str=args.str local rep=args.rep str=string.gsub(str,rep,''); return str end return p
该页面使用的模板:
模块:SplitFormat/doc
(
查看源代码
)
返回至
模块:SplitFormat
。
导航菜单
个人工具
创建账户
登录
名字空间
模块
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
导航
首页
随机页面
管理与编辑
最近更改
MediaWiki帮助
工具
链入页面
相关更改
特殊页面
页面信息