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

removeSubrange(_:)

Removes the characters in the given range. 与えられた範囲の中の文字を削除します。

Declaration 宣言

mutating func removeSubrange(_ bounds: Range<String.Index>)

Parameters パラメータ

bounds

The range of the elements to remove. The upper and lower bounds of bounds must be valid indices of the string and not equal to the string’s end index. 削除する要素の範囲。bounds範囲の上方および下方の境界はこの文字列の有効なインデックスでなければなりません、そしてこの文字列の持つ末尾インデックスと等しくてはなりません。

bounds

The range of the elements to remove. The upper and lower bounds of bounds must be valid indices of the string. 削除する要素の範囲。boundsの上方および下方の境界は、文字列の有効なインデックスでなければなりません。

Discussion 解説

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

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

Removing Substrings 下位文字列の削除