Modul:String: Unterschied zwischen den Versionen

Keine Änderung der Größe ,  vor 12 Jahren
Oh, the existing code is 0-based
(+ substr variant that takes a length instead of an ending position)
(Oh, the existing code is 0-based)
Zeile 10: Zeile 10:


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


Anonymer Benutzer