lua中如何实现连接字符串

 我来答
折柳成萌
高粉答主

2018-06-11 · 繁杂信息太多,你要学会辨别
知道顶级答主
回答量:4.4万
采纳率:96%
帮助的人:6188万
展开全部
#!/usr/bin/env lua function th_table_dup(ori_tab) -- 复制table if (type(ori_tab) ~= "table") then return nil; end local new_tab = {}; for i,v in pairs(ori_tab) do local vtyp = type(v); if (vtyp == "table") then new_tab[i] = th_table_dup(v); elseif (vtyp == "thread") then -- TODO: dup or just point to? new_tab[i] = v; elseif (vtyp == "userdata") then -- TODO: dup or just point to? new_tab[i] = v; else new_tab[i] = v; end end return new_tab;end function permutation(s1,p) if #s1 == 1 then -- 如果s1长度为1,意味着获得了一种新的排列 p = p .. s1[1] -- 那么就打印它 print(p) else -- 否则,选定一种方案,继续递归 local i for i = 1, #s1 do -- 4.3 Control Structure; Numeric for local p2, s2 p2 = p .. s1[i] s2 = th_table_dup(s1) -- 把s1表的内容复制给s2表 table.remove(s2,i) -- 20.1 Insert and Remove permutation(s2,p2) -- 用s2继续进行递归 end endend -- 主程序a = io.read() -- 读入字符串,可含汉字 -- 22.1 The Simple I/O Modellen = #(string.gsub(a, "[\128-\191]", "")) -- 计算字符数(不是字节数) i=1 -- 迭代出每一个字符,并保存在table中s = {} -- 21.1 Basic String Functionsfor c in string.gmatch(a, ".[\128-\191]*") do -- 21.2 Pattern-Matching Functions s[i]=c -- 21.7 Unicode i=i+1end print("permutation output:")p=""permutation(s,p)
gcbjoy
2018-06-10 · TA获得超过1.1万个赞
知道大有可为答主
回答量:1.1万
采纳率:92%
帮助的人:2142万
展开全部
用两个圆点连接字符串即可。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式