Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- string.split = function(inputstr, sep)
- if sep == nil then
- sep = "%s"
- end
- local t={}
- for str in string.gmatch(inputstr, "([^"..sep.."]+)") do
- table.insert(t, str)
- end
- return t
- end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement