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

hasPrefix:

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

Declaration 宣言

- (BOOL)hasPrefix:(NSString *)str;

Parameters パラメータ

aString

A string. ある文字列。

Return Value 戻り値

YES if aString matches the beginning characters of the receiver, otherwise NO. Returns NO if aString is empty. YES、もしaStringがレシーバの始まりの文字に合致するならば、そうでなければNONOを返します、もし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 文字列を識別および比較する