Add text.inputstream

master
Lars Mueller 2021-03-04 19:45:34 +01:00
parent b3703ab91d
commit 63050f3bad
1 changed files with 13 additions and 0 deletions

View File

@ -50,6 +50,19 @@ end
trim_right = trim_end
local inputstream_metatable = {
__index = {read = function(self, count)
local cursor = self.cursor + 1
self.cursor = self.cursor + count
local text = self.text:sub(cursor, self.cursor)
return text ~= "" and text or nil
end}
}
function inputstream(text)
return setmetatable({text = text, cursor = 0}, inputstream_metatable)
end
function split(text, delimiter, limit, is_regex)
limit = limit or math.huge
local no_regex = not is_regex