lua 字符串分割函数
lua 字符串分割函数 ------------------------------------------------------- -- 参数:待分割的字符串,分割字符 -- 返回:子串表.(含有空串) function lua_string_split(str, split_char) local sub_str_tab = {}; while (