由于工作项目需要,最近需要用lua来写一些脚本.然而lua并不想java那样有很多的好用的api,很多方法得我们自己来编写和封装,就比如今天碰到的劈分字符串,查找资料后只能自己写了一个. 代码如下 -- 参数:待分割的字符串,分割字符 -- 返回:子串表.(含有空串) function string_split(str, split_char) local sub_str_tab = {}; while (true) do local pos = string.find(str, split_c…