Jump to content

Module:String

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Anomie (talk | contribs) at 03:20, 19 February 2013 (Create module). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

local str = {}

function str:len( frame )
    return mw.ustring.len( frame.args[1] )
end

function str:sub( frame )
    return mw.ustring.sub( frame.args[1], tonumber( frame.args[2] ), tonumber( frame.args[3] ) )
end

function str:match( frame )
    return mw.ustring.match( frame.args[1], frame.args[2], tonumber( frame.args[3] ) )
end

return str