此模块的文档可以在模块:Utils/String/doc创建
local utils = {} utils.trim = function(str) return string.gsub(str, "^%s*(.-)%s*$", "%1") end return utils