The character to append to the string. 文字列に追加されることになる文字。
Instance Method
インスタンスメソッド
append(_:)
Appends the given character to the string.
与えられた文字を文字列へ加えます。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
mutating func append(_ c: Character
)
Parameters パラメータ
c
Discussion 解説
The following example adds an emoji globe to the end of a string. 以下の例は地球絵文字をある文字列の終わりに加えます。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Appending Strings and Characters 文字列と文字を追加する
func append(String)
Appends the given string to this string.
与えられた文字列をこの文字列へ加えます。
func append<S>(contentsOf : S)
Appends the characters in the given sequence to the string.
与えられたシーケンスの中の文字を文字列へ追加します。
func append<S>(contentsOf : S)
Adds the elements of a sequence or collection to the end of this collection.
あるシーケンスまたコレクションに属するいくつかの要素をこのコレクションの終わりに加えます。
func reserveCapacity (Int)
Reserves enough space in the string’s underlying storage to store the specified number of ASCII characters.
指定された数のASCII文字を格納するのに十分な空間を文字列のもつ基礎をなすストレージの中に確保します。
static func + <Other>(Other, String) -> String
Creates a new collection by concatenating the elements of a sequence and a collection.
あるシーケンスとあるコレクションの要素を連結することによって新しいコレクションを作成します。
static func + <Other>(String, Other) -> String
Creates a new collection by concatenating the elements of a collection and a sequence.
あるコレクションとあるシーケンスの要素を連結することによって新しいコレクションを作成します。
static func + <Other>(String, Other) -> String
Creates a new collection by concatenating the elements of two collections.
2つのコレクションの要素を連結することによって新しいコレクションを作成します。
static func += <Other>(inout String, Other)
Appends the elements of a sequence to a range-replaceable collection.
あるシーケンスの要素を範囲置換コレクションに加えます。