Skip to content

Instantly share code, notes, and snippets.

@jaredallard
Created May 21, 2015 05:07
Show Gist options
  • Save jaredallard/ddb152179831dd23b230 to your computer and use it in GitHub Desktop.
Save jaredallard/ddb152179831dd23b230 to your computer and use it in GitHub Desktop.
string.split in lua
-- split a string
function string:split(delimiter)
local result = { }
local from = 1
local delim_from, delim_to = string.find( self, delimiter, from )
while delim_from do
table.insert( result, string.sub( self, from , delim_from-1 ) )
from = delim_to + 1
delim_from, delim_to = string.find( self, delimiter, from )
end
table.insert( result, string.sub( self, from ) )
return result
end
@Luabee
Copy link

Luabee commented Aug 17, 2023

Herp, I assumed this was something I wrote 🫥

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment