Return Value 戻り値
A single, concatenated string. 単一の、連結された文字列。
Availability 有効性
Technology
Element
conforms to StringProtocol
.
Element
がStringProtocol
に準拠する時に利用可能です。
A single, concatenated string. 単一の、連結された文字列。
separator
A string to insert between each of the elements in this sequence. The default separator is an empty string. このシーケンスの要素のそれぞれの間に挿入されることになる文字列。省略時の分離子は空の文字列です。
The following example shows how an array of strings can be joined to a single, comma-separated string: 以下の例は、どのように文字列からなる配列が単一の、コンマ区切りの文字列へと連結できるかを示します:
let cast = ["Vivien", "Marlon", "Kim", "Karl"]
let list = cast.joined(separator: ", ")
print(list)
// Prints "Vivien, Marlon, Kim, Karl"