Module:String

Revision as of 19:48, 22 August 2012 by mw>IAlex (fix)

This module was imported from MediaWiki on 11:15, 18 February 2022 (JST). For documentation, please visit the corresponding MediaWiki page, Module:String/doc.


local p = {}

function p.length( frame )
    local arg1 = frame.args[1]
    return string.len( arg1 )
end    

return p