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

rangeOfCharacterFromSet:options:

Finds and returns the range in the string of the first character, using given options, from a given character set. 与えられたオプションを使って、ある与えられた文字集合からの最初の文字の文字列における範囲を発見して返します。

Declaration 宣言

- (NSRange)rangeOfCharacterFromSet:(NSCharacterSet *)searchSet 
                           options:(NSStringCompareOptions)mask;

Parameters パラメータ

aSet

A character set. This value must not be nil. ある文字集合。この値は、nilではいけません。

Raises an NSInvalidArgumentException if aSet is nil. NSInvalidArgumentExceptionを引き起こします、もしaSetnilならば。

mask

A mask specifying search options. The following options may be specified by combining them with the C bitwise OR operator: NSAnchoredSearch, NSBackwardsSearch. 検索オプションを指定するマスク。以下のオプションは、それらをCビット単位OR演算子で結合することによって指定されるかもしれません:NSAnchoredSearchNSBackwardsSearch

Return Value 戻り値

The range in the receiver of the first character found from aSet. Returns a range of {NSNotFound, 0} if none of the characters in aSet are found. aSetから見つけられた最初の文字のこのレシーバにおける範囲。{NSNotFound, 0}の範囲を返します、もしaSetの中の文字がひとつも見つけられないならば。

Discussion 議論

Invokes rangeOfCharacterFromSet:options:range: with mask for the options and the entire extent of the receiver for the range. rangeOfCharacterFromSet:options:range:を発動します、maskをオプションに対して使ってそしてレシーバの全域を範囲として。

See Also 参照

Finding Characters and Substrings 文字と下位文字列を発見する