首页 > 代码库 > #在lua中的运用
#在lua中的运用
在lua中“#”表示返回表长度或字符串长度
例子一:
a = "Hello " b = "World" print("Concatenation of string a with b is ", a..b ) print("Length of b is ",#b ) print("Length of b is ",#"Test" )
结果:
Concatenation of string a with b is Hello World Length of b is 5 Length of b is 4
例子二,对多维表的计算:
th> tags={{1,2,3},{3,4,4}}
th> #tags
2
例子三,
th> tags={1,2,3} [0.0001s] th> tags[#tags+1]=4 [0.0001s] th> tags { 1 : 1 2 : 2 3 : 3 4 : 4 }
#在lua中的运用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。