🇮🇷 Iran Proxy | https://www.wikipedia.org/wiki/Module:Sandbox/Matroc/Str_right
Jump to content

Module:Sandbox/Matroc/Str right

From Wikipedia, the free encyclopedia
local p = {}
 
function p.right( frame )
    astring = frame.args[1] or ""
    count = frame.args[2] or astring.len()
    astring = astring:sub(#astring - count + 1, #astring)
    return astring
end
 
return p