Instance Method インスタンスメソッド

hasPrefix(_:)

Returns a Boolean value that indicates whether a given string matches the beginning characters of the receiver. あるブール値を返します、与えられた文字列がレシーバの始まりの文字に合致するかどうかを指し示します。

Declaration 宣言

func hasPrefix(_ str: String) -> Bool

Parameters パラメータ

aString

A string. ある文字列。

Return Value 戻り値

true if aString matches the beginning characters of the receiver, otherwise false. Returns false if aString is empty. true、もしaStringがレシーバの始まりの文字に合致するならば、そうでなければfalsefalseを返します、もしaStringが空ならば。

Discussion 議論

This method is a convenience for comparing strings using the NSAnchoredSearch option. See String Programming Guide for more information. このメソッドは、文字列をNSAnchoredSearchオプションで比較することに対するある便宜です。String Programming Guideを更なる情報として見てください。

See Also 参照

Identifying and Comparing Strings 文字列を識別および比較する