码迷,mamicode.com
首页 > 其他好文 > 详细

Lua中..和#运算符的用法

时间:2017-07-13 20:40:01      阅读:301      评论:0      收藏:0      [点我收藏+]

标签:ack   ext   div   code   tracking   size   ring   pad   margin   

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


Lua中..和#运算符的用法

标签:ack   ext   div   code   tracking   size   ring   pad   margin   

原文地址:http://www.cnblogs.com/brucemengbm/p/7162040.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!