Changes

Jump to: navigation, search

Module:String

436 bytes added, 16:28, 24 February 2013
add description and whitespace handling option for len
local str = {}
--[====[
len
 
This function returns the length of the target string.
 
Usage:
{{#invoke:String|len|target_string|}}
OR
{{#invoke:String|pos|s=target_string}}
 
Parameters
s: The string whose length to report
 
If invoked using named parameters, Mediawiki will automatically remove any leading or
trailing whitespace from the target string.
]====]
function str.len( frame )
local new_args = str._getParameters( frame.args, {'s'} ); local s = new_args['s'] or ''; return mw.ustring.len( frame.args.s )
end
Anonymous user

Navigation menu