Module:String: Difference between revisions
Jump to navigation
Jump to search
en>Anomie (Create module) |
en>Anomie (wrong syntax) |
||
Line 1: | Line 1: | ||
local str = {} | local str = {} | ||
function str | function str.len( frame ) | ||
return mw.ustring.len( frame.args[1] ) | return mw.ustring.len( frame.args[1] ) | ||
end | end | ||
function str | function str.sub( frame ) | ||
return mw.ustring.sub( frame.args[1], tonumber( frame.args[2] ), tonumber( frame.args[3] ) ) | return mw.ustring.sub( frame.args[1], tonumber( frame.args[2] ), tonumber( frame.args[3] ) ) | ||
end | end | ||
function str | function str.match( frame ) | ||
return mw.ustring.match( frame.args[1], frame.args[2], tonumber( frame.args[3] ) ) | return mw.ustring.match( frame.args[1], frame.args[2], tonumber( frame.args[3] ) ) | ||
end | end | ||
return str | return str |
Revision as of 03:23, 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[1] )
end
function str.sub( frame )
return mw.ustring.sub( frame.args[1], tonumber( frame.args[2] ), tonumber( frame.args[3] ) )
end
function str.match( frame )
return mw.ustring.match( frame.args[1], frame.args[2], tonumber( frame.args[3] ) )
end
return str