将NSArray对象连接到一个字符串中,可以使用以下代码:
let array = ["Hello", "World", "!"]
let separator = ", "
let result = array.joined(separator: separator)
print(result) // 输出 "Hello, World, !"
如果需要指定属性,可以使用以下代码:
let array = ["Hello", "World", "!"]
let separator = ", "
let result = array.map { $0.uppercased() }.joined(separator: separator)
print(result) // 输出 "HELLO, WORLD, !"
这里使用了map函数将数组中的每个元素转换为大写,然后再使用joined函数将它们连接到一个字符串中。
领取专属 10元无门槛券
手把手带您无忧上云