打开主菜单
首页
随机
登录
设置
关于iFx Wiki
免责声明
iFx Wiki
搜索
查看“模块:StringUtils”的源代码
←
模块:StringUtils
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看和复制此页面的源代码。
local p = {} function p.split_or_empty(value, sep) if value and #value > 0 then return mw.text.split(value, sep) else return {} end end function p.split(s, sep) return mw.text.split(s, sep) end function p.join(l, sep) return mw.text.listToText(l, sep, sep) end function p.assert_not_empty(s) if s and #s == 0 then return nil else return s end end return p
该页面使用的模板:
模块:StringUtils/doc
(
查看源代码
)
返回至
模块:StringUtils
。