mirror of
https://github.com/mvolfik/graftorio2.git
synced 2025-12-05 23:40:13 +00:00
8 lines
148 B
Lua
8 lines
148 B
Lua
function split(inputstr, sep)
|
|
local t = {}
|
|
for str in string.gmatch(inputstr, "([^" .. sep .. "]+)") do
|
|
table.insert(t, str)
|
|
end
|
|
return t
|
|
end
|