Artifact 2e0c2f1d7c217702675d9586a1cdf851d0800ba6f21d1341dc57c0378061e639:
- File 残局文料/dfns_jvwg_ysaf/程语_月_基类_文_内置库_加多.lua — part of check-in [b9c7eb4d3e] at 2024-01-29 07:51:06 on branch trunk — (/ω\) (user: 顽雨沉风, size: 450) [annotate] [blame] [check-ins using]
- File 残局文料/lib/程语_月_基类_文_内置库_加多.lua — part of check-in [596c321b0c] at 2024-01-27 02:26:20 on branch trunk — (/ω\) (user: 顽雨沉风, size: 450) [annotate] [blame] [check-ins using]
- File 残局文料/lua_lib/程语_月_基类_文_内置库_加多.lua — part of check-in [5e8e495c56] at 2024-01-30 07:29:00 on branch trunk — (/ω\) (user: 顽雨沉风, size: 450) [annotate] [blame] [check-ins using]
function string:lstrip() return self:gsub("^%s+", "") end function string:rstrip() return self:gsub("%s+$", "") end function string:strip() local k1 k1 = self:lstrip() return k1:rstrip() end function string:startswith(text) local size = text:len() if self:sub(1, size) == text then return self end end function string:endswith(text) if self:sub(-#text) == text then return self end end