- scanCharactersFromSet:intoString:
- scanString:intoString:
- scanUpToString:intoString:
Availability 有効性
Technology
- (BOOL)scanUpToCharactersFromSet:(NSCharacterSet
*)set
intoString:(NSString
* _Nullable *)result;
stopSet
The set of characters up to which to scan. それに至るまで走査することになる文字の集合。
stringValue
Upon return, contains the characters scanned. 戻りでは、走査された文字を含みます。
YES
if the receiver scanned any characters, otherwise NO
.
YES
、もしレシーバが何らかの文字を走査したならば、そうでなければNO
。
If the only scanned characters are in the characters
character set (which is the whitespace and newline character set by default), then returns NO
.
走査された文字がcharacters
文字集合(それは初期状態では空白および改行文字集合です)の中にあるものだけならば、そのときNO
を返します。
Invoke this method with NULL
as string
to simply scan up to a given set of characters.
NULL
をstring
として使ってこのメソッドを発動すると、単純にある与えられた集合の文字に達するまで走査します。
If no characters in stop
are present in the scanner's source string, the remainder of the source string is put into string
, the receiver’s scan
is advanced to the end of the source string, and the method returns YES
.
stop
の中の文字列がスキャナーのもつソース文字列に存在しないならば、ソース文字列の残りはstring
に置かれ、レシーバのもつscan
はソース文字列の終わりに進められ、そしてメソッドはYES
を返します。
- scanCharactersFromSet:intoString:
- scanString:intoString:
- scanUpToString:intoString: