Instance Method
インスタンスメソッド
scanString(_:into:)
Scans a given string, returning an equivalent string object by reference if a match is found.
与えられた文字列を求めて走査します、もしある合致が見つけられるならば、同等の文字列オブジェクトを参照によって返します。
Parameters
パラメータ
string
The string for which to scan at the current scan location.
この文字列を求めて現在の走査位置で走査することになります。
stringValue
Upon return, if the receiver contains a string equivalent to string
at the current scan location, contains a string equivalent to string
.
戻りでは、レシーバがstring
に等しいある文字列を現在の走査位置で含むならば、string
に等しい文字列を含みます。
Return Value
戻り値
true
if string
matches the characters at the scan location, otherwise false
.
true
、もしstring
が走査位置での文字に合致するならば、そうでなければfalse
。
Discussion
議論
If string
is present at the current scan location, then the current scan location is advanced to after the string; otherwise the scan location does not change.
string
が現在の走査位置で存在するならば、そのとき現在の走査位置はその文字列の後まで進められます;そうでなければ走査位置は変化しません。
Invoke this method with NULL
as stringValue
to simply scan past a given string.
NULL
をstringValue
として使ってこのメソッドを発動すると、単純にある与えられた文字列を越えて走査します。
See Also
参照
Scanning Characters and Strings
文字と文字列を走査する