Module:String: Difference between revisions
Jump to navigation
Jump to search
en>Anomie (wrong syntax) |
en>Anomie (Use named parameters, to get free trimming MediaWiki) |
||
Line 2: | Line 2: | ||
function str.len( frame ) | function str.len( frame ) | ||
return mw.ustring.len( frame.args | return mw.ustring.len( frame.args.s ) | ||
end | end | ||
function str.sub( frame ) | function str.sub( frame ) | ||
return mw.ustring.sub( frame.args | return mw.ustring.sub( frame.args.s, tonumber( frame.args.i ), tonumber( frame.args.i ) ) | ||
end | end | ||
function str.match( frame ) | function str.match( frame ) | ||
return mw.ustring.match( frame.args | return mw.ustring.match( frame.args.s, frame.args.pattern, tonumber( frame.args.i ) ) | ||
end | end | ||
return str | return str |
Revision as of 03:26, 19 February 2013
You might want to create a documentation page for this module.
Editors can experiment in this module's sandbox and testcases pages.
Please add categories to the /doc subpage. Subpages of this module.
Editors can experiment in this module's sandbox and testcases pages.
Please add categories to the /doc subpage. Subpages of this module.
local str = {}
function str.len( frame )
return mw.ustring.len( frame.args.s )
end
function str.sub( frame )
return mw.ustring.sub( frame.args.s, tonumber( frame.args.i ), tonumber( frame.args.i ) )
end
function str.match( frame )
return mw.ustring.match( frame.args.s, frame.args.pattern, tonumber( frame.args.i ) )
end
return str