Split string in Lua?
I need to do a simple split of a string, but there doesn’t seem to be a function for this, and the manual … Read more
I need to do a simple split of a string, but there doesn’t seem to be a function for this, and the manual … Read more
I am confused about the difference between function calls via . and via : > x = {foo = function(a,b) return a end, … Read more
How can I convert a string to an integer in Lua? I have a string like this: a = “10” I would like … Read more