我是靠谱客的博主 无心人生,这篇文章主要介绍lua 字符串分隔,支持以单个字符或字符串进行分隔,现在分享给大家,希望可以做个参考。

    1. local function explode ( _str, seperator)
      local pos, arr = 0, {}
      for st, sp in function() return string.find( _str, seperator, pos, true ) end do
      table.insert(arr, string.sub(_str, pos, st-1 ))
      pos = sp + 1
      end
      table.insert(arr, string.sub( _str, pos))
      return arr
      end

    2. local ta2 = explode("hsee_,sdj_,ehi_,djsd","_,")
      local newSt2 = table.concat(ta2,"n")
      print(newSt2)

  • https://blog.csdn.net/li396864285/article/details/79726607

转载于:https://www.cnblogs.com/gongchixin/articles/9763752.html

最后

以上就是无心人生最近收集整理的关于lua 字符串分隔,支持以单个字符或字符串进行分隔的全部内容,更多相关lua内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部