Module:patterns: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

13 April 2025

  • curprev 15:0015:00, 13 April 2025Sware talk contribs 5,860 bytes +5,860 Created page with "local export = {} local byte = string.byte local find = string.find local gsub = string.gsub local match = string.match do local pattern_chars local function get_pattern_chars() pattern_chars, get_pattern_chars = { ["\0"] = "%z", ["$"] = "%$", ["%"] = "%%", ["("] = "%(", [")"] = "%)", ["*"] = "%*", ["+"] = "%+", ["-"] = "%-", ["."] = "%.", ["?"] = "%?", ["["] = "%[", ["]"] = "%]", ["^"] = "%^", }, nil return pattern_chars end --[==[Escapes the magic..."