主頁 > 知識庫 > Lua實現(xiàn)split函數(shù)

Lua實現(xiàn)split函數(shù)

熱門標(biāo)簽:漳州智云呼電話機器人 百度地圖標(biāo)注早餐區(qū)域 武漢外呼防封系統(tǒng)多少錢 冀州市地圖標(biāo)注 怎么去除地圖標(biāo)注 新岸線智能電銷機器人 清朝地圖標(biāo)注哈爾濱 個人怎么在地圖標(biāo)注需要的店鋪 地圖標(biāo)注大廈
function split(s, delim)
  if type(delim) ~= "string" or string.len(delim) = 0 then
    return
  end

  local start = 1
  local t = {}
  while true do
  local pos = string.find (s, delim, start, true) -- plain find
    if not pos then
     break
    end

    table.insert (t, string.sub (s, start, pos - 1))
    start = pos + string.len (delim)
  end
  table.insert (t, string.sub (s, start))

  return t
end

您可能感興趣的文章:
  • Lua教程(二):基礎(chǔ)知識、類型與值介紹
  • C調(diào)用lua函數(shù)需要考慮的問題
  • Lua中if語句嵌套的使用教程

標(biāo)簽:儋州 天門 宣城 天門 德宏 臺灣 濰坊 金昌

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Lua實現(xiàn)split函數(shù)》,本文關(guān)鍵詞  Lua,實現(xiàn),split,函數(shù),Lua,實現(xiàn),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Lua實現(xiàn)split函數(shù)》相關(guān)的同類信息!
  • 本頁收集關(guān)于Lua實現(xiàn)split函數(shù)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章