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

scanCharacters(from:into:)

Scans the string as long as characters from a given character set are encountered, accumulating characters into a string that’s returned by reference. ある与えられた文字集合からの文字それらが出くわされるかぎりは文字列を走査します、参照によって返されるある文字列へと文字それらを集積しています。

Declaration 宣言

func scanCharacters(from set: CharacterSet, 
               into result: AutoreleasingUnsafeMutablePointer<NSString?>?) -> Bool

Parameters パラメータ

scanSet

The set of characters to scan. この集合の文字それらを走査することになります。

stringValue

Upon return, contains the characters scanned. 戻りでは、走査された文字を含みます。

Return Value 戻り値

true if the receiver scanned any characters, otherwise false. true、もしレシーバが何らかの文字を走査したならば、そうでなければfalse

Discussion 議論

Invoke this method with NULL as stringValue to simply scan past a given set of characters. NULLstringValueとして使ってこのメソッドを発動すると、単純にある与えられた集合の文字それらを通り越して走査します。

See Also 参照

Scanning Characters and Strings 文字と文字列を走査する