feat(utils): add few string utils

This commit is contained in:
Kazhnuz 2021-03-22 15:54:17 +01:00
parent d8c9a652ae
commit d57d5a7c0f
2 changed files with 28 additions and 1 deletions

View file

@ -28,5 +28,6 @@ return {
math = require(cwd .. "math"),
graphics = require(cwd .. "graphics"),
filesystem = require(cwd .. "filesystem"),
table = require(cwd .. "table")
table = require(cwd .. "table"),
string = require(cwd .. "string")
}

View file

@ -0,0 +1,26 @@
local String = {}
function String.isEmpty(pString)
return (pString == "" or pString == nil)
end
function String.split(pString, pPattern)
local Table = {} -- NOTE: use {n = 0} in Lua-5.0
local fpat = "(.-)" .. pPattern
local last_end = 1
local s, e, cap = pString:find(fpat, 1)
while s do
if s ~= 1 or cap ~= "" then
table.insert(Table,cap)
end
last_end = e+1
s, e, cap = pString:find(fpat, last_end)
end
if last_end <= #pString then
cap = pString:sub(last_end)
table.insert(Table, cap)
end
return Table
end
return String