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

append(_:)

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

Declaration 宣言

mutating func append(_ other: String)

Parameters パラメータ

other

Another string. 別の文字列。

Discussion 解説

The following example builds a customized greeting by using the append(_:) method: 以下の例はあつらえの挨拶をappend(_:)メソッドを使うことによって作ります:


var greeting = "Hello, "
if let name = getUserName() {
    greeting.append(name)
} else {
    greeting.append("friend")
}
print(greeting)
// Prints "Hello, friend"

See Also 参照

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