Return Value
戻り値
true
if the receiver scans any characters, otherwise false
.
true
、もしレシーバがいくつかの文字を走査するならば、そうでなければfalse
。
If the only scanned characters are in the charactersToBeSkipped
character set (which by default is the whitespace and newline character set), then this method returns false
.
走査された文字がcharactersToBeSkipped
文字集合(それは初期状態では空白および改行文字集合です)の中にあるものだけならば、そのときこのメソッドはfalse
を返します。
Discussion
議論
If stopString
is present in the receiver, then on return the scan location is set to the beginning of that string.
stopString
がレシーバに存在するならば、そのとき戻りでは走査位置はその文字列の始まりに設定されます。
If stopString
is the first string in the receiver, then the method returns false
and stringValue
is not changed.
stopString
がレシーバにおける最初の文字列ならば、そのときこのメソッドはfalse
を返します、そしてstringValue
は変更されません。
If the search string (stopString
) isn't present in the scanner's source string, the remainder of the source string is put into stringValue
, the receiver’s scanLocation
is advanced to the end of the source string, and the method returns true
.
検索文字列(stopString
)がスキャナーのもつソース文字列に存在しないならば、ソース文字列の残りはstringValue
に置かれ、レシーバのもつscanLocation
はソース文字列の終わりに進められ、そしてメソッドはtrue
を返します。
Invoke this method with NULL
as stringValue
to simply scan up to a given string.
NULL
をstringValue
として使ってこのメソッドを発動すると、単純にある与えられた文字列に達するまで走査します。