All public logs

Jump to navigation Jump to search

Combined display of all available logs of Roat Pkz. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 12:21, 6 June 2024 Hefner talk contribs created page Module:Replace (Created page with "-- <pre> -- A module to allow substitution of regex replace functions local p = {} function p.main(frame) local args = frame:getParent().args return p._main(args) end -- a : string -- b : search -- c : replace function p._main(args) local a = mw.text.decode(args[1]) local b = mw.text.decode(args[2] or '') local c = mw.text.decode(args[3] or '') -- let us use real regex stuff b = mw.ustring.gsub(b,'\\','%') :gsub('%*%?','-') :gsub('¦','|') c = mw.us...")