唠叨大侠

文章
5
资源
0
加入时间
3年1月12天

Lua指定字符串分割

1.function split( str,reps ) local resultStrList = {} string.gsub(str,'[^'..reps..']+',function ( w ) table.insert(resultStrList,w) end) return resultStrListendstring库的gs...