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

append(_:)

Appends the given character to the string. 与えられた文字を文字列へ加えます。

Declaration 宣言

mutating func append(_ c: Character)

Parameters パラメータ

c

The character to append to the string. 文字列に追加されることになる文字。

Discussion 解説

The following example adds an emoji globe to the end of a string. 以下の例は地球絵文字をある文字列の終わりに加えます。


var globe = "Globe "
globe.append("🌍")
print(globe)
// Prints "Globe 🌍"

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

Appending Strings and Characters 文字列と文字を追加する