Instance Method
インスタンスメソッド
removeCharactersInRange:
Removes from the receiver the characters whose Unicode values are in a given range.
それのユニコード値がある与えられた範囲の中にある文字を、レシーバから取り除きます。
Declaration
宣言
- (void)removeCharactersInRange:(NSRange
)aRange;
Parameters
パラメータ
aRange
The range of characters to remove.
取り除く文字範囲。
aRange
.location
is the value of the first character to remove; aRange
.location +
aRange
.length– 1
is the value of the last. If aRange
.length
is 0
, this method has no effect.
aRange
.location
は取り除く最初の文字の値です;aRange
.location +
aRange
.length– 1
は最後のものの値です。aRange
.length
が0
ならば、このメソッドは効果を持ちません。
See Also
参照
Adding and Removing Characters
文字の追加と除去
- addCharactersInRange:
Adds to the receiver the characters whose Unicode values are in a given range.
それのユニコード値がある与えられた範囲の中にある文字を、レシーバに加えます。