Instance Method
インスタンスメソッド
scanCharactersFromSet:intoString:
Scans the string as long as characters from a given character set are encountered, accumulating characters into a string that’s returned by reference.
ある与えられた文字集合からの文字それらが出くわされるかぎりは文字列を走査します、参照によって返されるある文字列へと文字それらを集積しています。
Parameters
パラメータ
scanSet
The set of characters to scan.
この集合の文字それらを走査することになります。
stringValue
Upon return, contains the characters scanned.
戻りでは、走査された文字を含みます。
Return Value
戻り値
YES
if the receiver scanned any characters, otherwise NO
.
YES
、もしレシーバが何らかの文字を走査したならば、そうでなければNO
。
Discussion
議論
Invoke this method with NULL
as stringValue
to simply scan past a given set of characters.
NULL
をstringValue
として使ってこのメソッドを発動すると、単純にある与えられた集合の文字それらを通り越して走査します。
See Also
参照
Scanning Characters and Strings
文字と文字列を走査する
- scanUpToCharactersFromSet:intoString:
Scans the string until a character from a given character set is encountered, accumulating characters into a string that’s returned by reference.
ある与えられた文字集合からのある文字が出くわされるまでこの文字列を走査します、参照によって返されるある文字列へと文字それらを集積しています。
- scanString:intoString:
Scans a given string, returning an equivalent string object by reference if a match is found.
与えられた文字列を求めて走査します、もしある合致が見つけられるならば、同等の文字列オブジェクトを参照によって返します。
- scanUpToString:intoString:
Scans the string until a given string is encountered, accumulating characters into a string that’s returned by reference.
ある与えられた文字が出くわされるまでこの文字列を走査します、参照によって返されるある文字列へと文字それらを集積しています。