如何将String数组中的单词连接到单个String,在Swift中用逗号分隔?

时间:2017-05-01 12:56:51

标签: swift

我的String应用中有Swift个数组。我想在标签中显示它们,每个标签用,分隔。我试过这个:

for hashtag in placeHashtags {
        text = text + "\(hashtag), "
    }

if (placeHashtags.count > 0){
    let text1 = text.remove(at: text.index(before: text.endIndex-1))
    text = text1.description
}

(第二个if是删除最后一个逗号),但我的标签中没有看到任何内容。 我该如何解决?

1 个答案:

答案 0 :(得分:2)

你应该写下这个:

let array = ["Hi", "Hello", "How", "Are", "You", "Fine"]
let joined = array.joined(separator: ", ")