-
-
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 -
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内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复