Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Main public logs

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

Logs
  • 04:45, 24 February 2025 Prd talk contribs created page Module:Regex (Created page with "local p = {} local getArgs = require('Module:Arguments').getArgs --args: 1 - page to search, 2 - match pattern local function allcases(s) return s:gsub('([%?%^%$%(%)%%%.%[%]%*%+%-])', '%%%1') :gsub('%a', function(letter) return '['..letter:upper()..letter:lower()..']' end) :gsub('%[([^%[%]]+)%]', '%1') end function p._match(args) local page = mw.title.new(args["1"]) if not page then --bad title return "" end local redirectTarget = page.redirectTarget if...")