diff --git a/kong/tools/string.lua b/kong/tools/string.lua index 1920d7e970b7..79c3b265ec23 100644 --- a/kong/tools/string.lua +++ b/kong/tools/string.lua @@ -1,13 +1,20 @@ local pl_stringx = require "pl.stringx" -local type = type -local ipairs = ipairs -local tostring = tostring -local lower = string.lower -local fmt = string.format -local find = string.find -local gsub = string.gsub +local type = type +local ipairs = ipairs +local tostring = tostring +local lower = string.lower +local sub = string.sub +local fmt = string.format +local find = string.find +local gsub = string.gsub +local byte = string.byte + + +local SPACE_BYTE = byte(" ") +local TAB_BYTE = byte("\t") +local CR_BYTE = byte("\r") local _M = {} @@ -24,16 +31,49 @@ _M.split = pl_stringx.split --- strips whitespace from a string. -- @function strip -_M.strip = function(str) - if str == nil then +_M.strip = function(value) + if value == nil then return "" end - str = tostring(str) - if #str > 200 then - return str:gsub("^%s+", ""):reverse():gsub("^%s+", ""):reverse() - else - return str:match("^%s*(.-)%s*$") + + if type(value) ~= "string" then + value = tostring(value) + end + + if value == "" then + return "" end + + local len = #value + local s = 1 + for i = 1, len do + local b = byte(value, i) + if b == SPACE_BYTE or (b >= TAB_BYTE and b <= CR_BYTE) then + s = s + 1 + else + break + end + end + + if s > len then + return "" + end + + local e = len + for i = len, 1, -1 do + local b = byte(value, i) + if b == SPACE_BYTE or (b >= TAB_BYTE and b <= CR_BYTE) then + e = e - 1 + else + break + end + end + + if s ~= 1 or e ~= len then + value = sub(value, s, e) + end + + return value end @@ -180,4 +220,3 @@ _M.replace_dashes_lower = replace_dashes_lower return _M -