“模块:Str test”的版本间的差异
1.38>牛腩面 小 (导入1个版本) |
小 (导入1个版本) |
(没有差异)
|
2022年7月8日 (五) 21:15的最新版本
此模块的文档可以在模块:Str test/doc创建
local module = {}
function module.main(frame)
local args = frame.args
local str = args[1]
local ptn = mw.text.decode(mw.text.unstripNoWiki(args[2]))
if mw.ustring.find(str, ptn) == nil
then return ''
else return 1 end
end
return module