Swift Array To String

[Solved] Swift Array To String | Swift - Code Explorer | yomemimo.com
Question : swift array to string

Answered by : mobile-star

let stringArray = ["Bob", "Dan", "Bryan"]
let string = stringArray.joined(separator: "")
print(string) // prints: "BobDanBryan"

Source : | Last Update : Mon, 10 Feb 20

Answers related to swift array to string

Code Explorer Popular Question For Swift