Instance Method インスタンスメソッド

formatted()

Generates a locale-aware string representation of a sequence using the default list format style. あるシーケンスのロケールを意識した文字列表現を省略時のリスト書式形式を使って生成します。

Declaration 宣言

func formatted() -> String
Available when Element is String. ElementStringである時に利用可能です。

Return Value 戻り値

A string, formatted according to the default list format style. ある文字列、それは省略時のリスト書式形式により書式設定されます。

Discussion 解説

Use the formatted() method to apply the default list format style to a sequence of strings. For example: formatted()メソッドを使って、省略時のリスト書式形式を文字列いくつからなるあるシーケンスに適用してください。例えば:


["Kristin", "Paul", "Ana", "Bill"].formatted()
// Kristin, Paul, Ana, and Bill

For more information about list format styles, see ListFormatStyle. リスト書式形式についてのさらなる情報として、ListFormatStyleを見てください。

See Also 参照

Formatting a Sequence シーケンスを書式設定する