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

stringByReplacingOccurrencesOfString:withString:

Returns a new string in which all occurrences of a target string in the receiver are replaced by another given string. ある新しい文字列を返します、それにおいてはレシーバにおけるある目標文字列の全ての発生が別の与えられた文字列よって置き換えられます。

Declaration 宣言

- (NSString *)stringByReplacingOccurrencesOfString:(NSString *)target 
                                        withString:(NSString *)replacement;

Parameters パラメータ

target

The string to replace. 置き換える文字列。

replacement

The string with which to replace target. この文字列でtargetを置き換えることになります。

Return Value 戻り値

A new string in which all occurrences of target in the receiver are replaced by replacement. ある新しい文字列、それにおいてレシーバにおけるtargetのすべての発生はreplacementによって置き換えられます。

Discussion 議論

Invokes stringByReplacingOccurrencesOfString:withString:options:range:with 0 options and range of the whole string. stringByReplacingOccurrencesOfString:withString:options:range:0のオプションと文字列全体の範囲で発動します。

See Also 参照

Replacing Substrings 下位文字列の置換

Related Documentation 関連文書