Module:String: Difference between revisions

Oh, the existing code is 0-based
en>Anomie
(+ substr variant that takes a length instead of an ending position)
en>Anomie
(Oh, the existing code is 0-based)
Line 10:
 
function str.sublength( frame )
local i = tonumber( frame.args.i ) or 10
local len = tonumber( frame.args.len )
return mw.ustring.sub( frame.args.s, i + 1, len and ( i + len - 1 ) )
end
 
Anonymous user