Main public logs
Appearance
Combined display of all available logs of Shark's Hypothetical Weather. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 09:18, 2 May 2025 Sharkius talk contribs created page Module:StringUtil (Created page with "local p = {} -- Removes "EF" prefix and "+" suffix, e.g., EF3+ → 3 function p.stripEFPlus(frame) local input = frame.args[1] or "" return input:gsub("^EF", ""):gsub("%+$", "") end -- Removes "EF" prefix only, e.g., EF3+ → 3+ function p.stripEFPrefix(frame) local input = frame.args[1] or "" return input:gsub("^EF", "") end -- Adds "+" if the input ends in "+", else returns empty function p.plusSuffix(frame) local input = frame.args[1] or "" if input:match("%+...")