Con Swift 5, in base alle tue esigenze, puoi scegliere uno dei seguenti codici di esempio Playground per risolvere il tuo problema.
Trasformando una matrice di Character
s in una String
senza separatore:
let characterArray: [Character] = ["J", "o", "h", "n"]
let string = String(characterArray)
print(string)
// prints "John"
Trasformando una matrice di String
s in una String
senza separatore:
let stringArray = ["Bob", "Dan", "Bryan"]
let string = stringArray.joined(separator: "")
print(string) // prints: "BobDanBryan"
Trasformando una matrice di String
s in a String
con un separatore tra le parole:
let stringArray = ["Bob", "Dan", "Bryan"]
let string = stringArray.joined(separator: " ")
print(string) // prints: "Bob Dan Bryan"
Trasformando una matrice di String
s in a String
con un separatore tra i caratteri:
let stringArray = ["car", "bike", "boat"]
let characterArray = stringArray.flatMap { $0 }
let stringArray2 = characterArray.map { String($0) }
let string = stringArray2.joined(separator: ", ")
print(string) // prints: "c, a, r, b, i, k, e, b, o, a, t"
Trasformando una matrice di Float
s in a String
con un separatore tra numeri:
let floatArray = [12, 14.6, 35]
let stringArray = floatArray.map { String($0) }
let string = stringArray.joined(separator: "-")
print(string)
// prints "12.0-14.6-35.0"
array.description
o se vuoi un separatore personalizzatoarray.joined(separator: ",")