Array.Join连接
function Join (seperator : string) : String
Description描述
Joins the contents of an array into one string.
The elements are seperated by the seperator string. and returns a copy of the joined array
连接数组中的内容到一个字符串。字符串的分隔符由seperator 指定。
注意,是把数组中的每一个字符串都连接起来,变为一个字符串。
function Start () {
var arr = new Array ("Hello", "World");
// 打印结果 "Hello, World" ,由数组中的两个字符串变为现在的一个字符串。
print(arr.join(", "));
}
最后修改:2010年11月28日 Sunday 23:01