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

addCharactersInRange:

Adds to the receiver the characters whose Unicode values are in a given range. それのユニコード値がある与えられた範囲の中にある文字を、レシーバに加えます。

Declaration 宣言

- (void)addCharactersInRange:(NSRange)aRange;

Parameters パラメータ

aRange

The range of characters to add. 加えることになる文字の範囲。

aRange.location is the value of the first character to add; 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.length0ならば、このメソッドは効果を持ちません。

Discussion 議論

This code excerpt adds to a character set the lowercase English alphabetic characters: このコード抜粋は、ある文字集合にローワーケース英語アルファベット文字を加えます。


NSMutableCharacterSet *aCharacterSet = [[NSMutableCharacterSet alloc] init];
NSRange lcEnglishRange;
 
lcEnglishRange.location = (unsigned int)'a';
lcEnglishRange.length = 26;
[aCharacterSet addCharactersInRange:lcEnglishRange];

See Also 参照

Adding and Removing Characters 文字の追加と除去

Related Documentation 関連文書