- scanCharactersFromSet:intoString:
- scanUpToCharactersFromSet:intoString:
- scanString:intoString:
Availability 有効性
Technology
stopString
The string to scan up to. この文字列まで走査することになります。
stringValue
Upon return, contains any characters that were scanned. 戻りでは、走査されたあらゆる文字。
YES
if the receiver scans any characters, otherwise NO
.
YES
、もしレシーバがいくつかの文字を走査するならば、そうでなければNO
。
If the only scanned characters are in the characters
character set (which by default is the whitespace and newline character set), then this method returns NO
.
走査された文字がcharacters
文字集合(それは初期状態では空白および改行文字集合です)の中にあるものだけならば、そのときこのメソッドはNO
を返します。
If stop
is present in the receiver, then on return the scan location is set to the beginning of that string.
stop
がレシーバに存在するならば、そのとき戻りでは走査位置はその文字列の始まりに設定されます。
If stop
is the first string in the receiver, then the method returns NO
and string
is not changed.
stop
がレシーバにおける最初の文字列ならば、そのときこのメソッドはNO
を返します、そしてstring
は変更されません。
If the search string (stop
) isn't 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
を返します。
Invoke this method with NULL
as string
to simply scan up to a given string.
NULL
をstring
として使ってこのメソッドを発動すると、単純にある与えられた文字列に達するまで走査します。
- scanCharactersFromSet:intoString:
- scanUpToCharactersFromSet:intoString:
- scanString:intoString: