方法介绍

方法名称:返回数组元素连接的字符串

语法:table.concat(table [, sep [, start [, end]]])

功能说明:

concat是concatenate(连锁, 连接)的缩写.

table.concat()函数列出参数中指定table的数组部分

从start位置到end位置的所有元素, 元素间以指定的分隔符(sep)隔开。

方法例子

testarr = {"hello","nice","ok"}

-- 返回 table 连接后的字符串

print("连接后的字符串 ",table.concat(testarr))

-- 指定连接字符

print("连接后的字符串 ",table.concat(testarr,", "))

-- 指定索引来连接 table

print("连接后的字符串 ",table.concat(testarr,", ", 2,3))

Copyright © 湖南合鑫网络科技有限公司 2020 all right reserved,powered by Gitbook该文件修订时间: 2020-11-12 10:34:16

results matching ""

    No results matching ""