Modulo:String: differenze tra le versioni
Contenuto cancellato Contenuto aggiunto
Gac (discussione | contributi) aggiunto Ď e ď al collate |
+_match() per chiamata diretta da un modulo; Unit test: OK |
||
Riga 148:
]]
function str.match(
return str._match(frame.args)
local new_args = str._getParameters( frame.args, {'s', 'pattern', 'start', 'match', 'plain', 'nomatch'} );▼
end
--[[
Entry point per chiamata diretta da un modulo
]]
function str._match( args )
▲ local new_args = str._getParameters(
local s = new_args['s'] or '';
local start = tonumber( new_args['start'] ) or 1;
|