Module:Sandbox/Matroc/Str left

Revision as of 07:19, 26 June 2013 by imported>Matroc
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:Sandbox/Matroc/Str left/doc

local p = {}
 
function p.left( frame )
    astring = frame.args[1] or ""
    count = frame.args[2] or astring.len()
    astring = astring:sub(1,count)
    return astring
end
 
return p