A sequence of characters. いくつかの文字からなるシーケンス。
Generic Instance Method
総称体インスタンスメソッド
append(contents
append(contentsOf:)
Appends the characters in the given sequence to the string.
与えられたシーケンスの中の文字を文字列へ追加します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 8.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Appending Strings and Characters 文字列と文字を追加する
func append(String)
Appends the given string to this string.
与えられた文字列をこの文字列へ加えます。
func append(Character)
Appends the given character 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.
あるシーケンスの要素を範囲置換コレクションに加えます。