I'm new to Lua and I'm sure this is a silly problem.
I was trying to remove first 3 characters from a string with string.gsub Here is the code:
string.gsub(m, "/jk", "", 1)
Now "/jk" are the first 3 chars the string, now, string.gsub adds a space instead of removing them. My question is, how to remove them without adding the space?