模組:沙盒/Lopullinen/doc

維基百科,自由的百科全書

此頁面為 Module:沙盒/Lopullinen 的說明文件

測試區[編輯]

Nothing

備忘錄[編輯]

-- 获取页面信息
mw.title.getCurrentTitle().text -- 獲取頁面標題,不含命名空間

-- 调用Mediawiki模板
mw.getCurrentFrame():expandTemplate{ title = 'template', args = { 'arg1', 'arg2', name = 'arg3' } }  -- {{template|args1|args2|name=args3}}
mw.getCurrentFrame():callParserFunction{ name = '#tag', args = { 'nowiki', 'some text' } }  -- {{#tag:nowiki|some text}}

-- 字符串处理
_, _, capture1, capture2 = mw.ustring.find(source_text, '(.+)blah blah(.+)')  -- 分組捕獲
new_string = mw.ustring.gsub(old_string, ptn, replacement)  -- 替换