模块:Str test
1.38>牛腩面2022年7月2日 (六) 19:00的版本 (导入1个版本)
此模块的文档可以在模块: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