我是靠谱客的博主 兴奋小懒虫,最近开发中收集的这篇文章主要介绍lua 字符串分割函数,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

lua 字符串分割函数
-------------------------------------------------------
-- 参数:待分割的字符串,分割字符
-- 返回:子串表.(含有空串)
function lua_string_split(str, split_char)
local sub_str_tab = {};
while (true) do
local pos = string.find(str, split_char);
if (not pos) then
local size_t = table.getn(sub_str_tab)
table.insert(sub_str_tab,size_t+1,str);
break;
end
local sub_str = string.sub(str, 1, pos - 1);
local size_t = table.getn(sub_str_tab)
table.insert(sub_str_tab,size_t+1,sub_str);
local t = string.len(str);
str = string.sub(str, pos + 1, t);
end
return sub_str_tab;
end
local str = "1,2,3,4,5,6,7,8,9"
local ta
= lua_string_split(str,",")
local size = table.getn(ta)
for i = 1,size ,1 do
print(ta[i])
end

最后

以上就是兴奋小懒虫为你收集整理的lua 字符串分割函数的全部内容,希望文章能够帮你解决lua 字符串分割函数所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

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

评论列表共有 0 条评论

立即
投稿
返回
顶部