摘要: 【find实现字符串分割】 # 只支持ascii字符,不支持中文这种 function Split(str, delimiter) local arr = {} local index = 1 while true do local index1, index2 = string.find(str, 阅读全文
posted @ 2021-12-04 00:40 yanghui01 阅读(214) 评论(0) 推荐(0) 编辑