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

appending(_:)

Returns a new string made by appending a given string to the receiver. 新しい文字列を返します、与えられた文字列をレシーバに追加することによって作られます。

Declaration 宣言

func appending(_ aString: String) -> String

Parameters パラメータ

aString

The string to append to the receiver. This value must not be nil. レシーバに追加することになる文字列。この値は、nilではいけません。

Return Value 戻り値

A new string made by appending aString to the receiver. aStringをレシーバに追加することによって作られる新しい文字列。

Discussion 議論

This code excerpt, for example: このコード抜粋は、例えば:


NSString *errorTag = @"Error: ";
NSString *errorString = @"premature end of file.";
NSString *errorMessage = [errorTag stringByAppendingString:errorString];

produces the string “Error: premature end of file.”. 文字列 “Error: premature end of file.” を生成します。

See Also 参照

Combining Strings 文字列を結合する

Related Documentation 関連文書