Jump to content

Module:StringReplace

Wikipedia se
Badlao 13:35, 24 Farwari 2013 tak Inkbug (Baat | yogdaan) (should work now) se

Documentation for this module may be created at Module:StringReplace/doc

local p = {}
function p.escape_pattern(text)
    local r = string.gsub(text, "[%(%)%.%%%+%-%*%?%[%^%$]", "%%%1")
    return r
end
function p.replace_all(frame)
    local str = frame.args[1]
    local strToFind = frame.args[2]
    local strToreplaceWith = frame.args[3]
    local r = string.gsub(str, p.escape_pattern(strToFind), p.escape_pattern(strToreplaceWith))
    return r
end
return p