All public logs
Combined display of all available logs of Linguifex. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 17:47, 4 November 2025 Sware talk contribs imported Module:string/startswith by file upload (1 revision)
- 09:16, 28 June 2025 Sware talk contribs created page Module:string/startswith (Created page with "local sub = string.sub --[==[ Returns {true} if the string {str} starts with the string {val}, or {false} if not. The optional indices {i} and {j} can be used to check a substring of {str}. Note that {val} is a string literal, not a Lua pattern.]==] return function(str, val, i, j) return sub(i == nil and j == nil and str or sub(str, i, j), 1, #val) == val end")