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 01:49, 21 February 2013 (+ substr variant that takes a length instead of an ending position). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local str = {}

function str.len( frame )
    return mw.ustring.len( frame.args.s )
end

function str.sub( frame )
    return mw.ustring.sub( frame.args.s, tonumber( frame.args.i ), tonumber( frame.args.j ) )
end

function str.sublength( frame )
    local i = tonumber( frame.args.i ) or 1
    local len = tonumber( frame.args.len )
    return mw.ustring.sub( frame.args.s, i, len and ( i + len - 1 ) )
end

function str.match( frame )
    return mw.ustring.match( frame.args.s, frame.args.pattern, tonumber( frame.args.i ) )
end

return str