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

deleteCharactersInRange:

Removes from the receiver the characters in a given range. レシーバからある与えられた範囲の中の文字を取り除きます。

Declaration 宣言

- (void)deleteCharactersInRange:(NSRange)range;

Parameters パラメータ

aRange

The range of characters to delete. aRange must not exceed the bounds of the receiver. 削除されることになる文字の範囲。aRangeは、レシーバの境界を越えてはいけません。

Discussion 議論

This method treats the length of the string as a valid range value that returns an empty string. このメソッドは、文字列の長さをある有効な範囲値として扱います、それは空文字列を返します。

See Also 参照

Modifying a String 文字列を修正する