Module:RegExpr
Revision as of 06:00, 1 June 2017 by IbarakiIbuki (talk | contribs)
Documentation for this module may be created at Module:RegExpr/doc
local re = {}
function re.findMatch(frame)
-- frame[1] = test string
-- frame[2] = Lua pattern
result = string.match(frame[1], frame[2])
if (result == nil) then
result = ""
end
return result
end
return re