lua實現split的簡易方法

 剛想用lua的split函數,網上查了下,實現都比較複雜,本身寫了個:)ide

string.split = function(s, p)函數

    local rt= {}
    string.gsub(s, '[^'..p..']+', function(w) table.insert(rt, w) end )
    return rtlua

endspa

 

使用例子一ip

local str = 'abc,123,hello,ok'string

local list = string.split(str, ',')it

for _, s in ipairs(list) doio

    print(s)table

endfunction

 

結果:

abc

123

hello

ok

 

 

使用例子二

local str = 'abc \n123 \t hello ok'

local list = string.split(str, '%s')

for _, s in ipairs(list) do

    print(s)

end

 

結果:

abc

123

hello

ok

相關文章
相關標籤/搜索