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

hasSuffix:

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

Declaration 宣言

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

Parameters パラメータ

aString

A string. ある文字列。

Return Value 戻り値

YES if aString matches the ending 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 and NSBackwardsSearch options. See String Programming Guide for more information. このメソッドは、文字列をNSAnchoredSearchNSBackwardsSearchオプションを使って比較することに対するある便宜です。String Programming Guideを更なる情報として見てください。

See Also 参照

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