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

rangeOfCharacter(from:)

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

Declaration 宣言

func rangeOfCharacter(from searchSet: CharacterSet) -> NSRange

Parameters パラメータ

aSet

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

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

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 rangeOfCharacter(from:options:) with no options. rangeOfCharacter(from:options:)をオプション無しで発動します。

See Also 参照

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