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

removeAll(keepingCapacity:)

Replaces this string with the empty string. この文字列を空の文字列で置き換えます。

Declaration 宣言

mutating func removeAll(keepingCapacity keepCapacity: Bool = false)

Parameters パラメータ

keepCapacity

Pass true to prevent the release of the string’s allocated storage. Retaining the storage can be a useful optimization when you’re planning to grow the string again. The default value is false. trueを渡して文字列のもつ割り当てストレージの解放を防止してください。ストレージを保持することは、あなたが文字列をもう一度増大しようと計画している時に、ひとつの有益な最適化であることができます。省略時の値はfalseです。

Discussion 解説

Calling this method invalidates any existing indices for use with this string. このメソッドを呼び出すことは、この文字列で使うためのあらゆる既存のインデックスを無効にします。

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

Removing Substrings 下位文字列の削除