Tag: split a string
In C++, there is no inbuilt split method for string. It is very useful to split a string into a vector of string. We can use the following string …
Unfortunately, in LUA, there is no inbuilt string splitting function, which is very inconvenient. However, you could use string.gmatch to begin a regular expression matching and the following is a …