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

stringByReplacingOccurrencesOfString:withString:options:range:

Returns a new string in which all occurrences of a target string in a specified range of the receiver are replaced by another given string. 新しい文字列を返します、そこにおいてレシーバの指定された範囲の中の目標文字列のすべての出現は、別の指定された文字列によって置き換えられます。

Declaration 宣言

- (NSString *)stringByReplacingOccurrencesOfString:(NSString *)target 
                                        withString:(NSString *)replacement 
                                           options:(NSStringCompareOptions)options 
                                             range:(NSRange)searchRange;

Parameters パラメータ

target

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

replacement

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

options オプション

A mask of options to use when comparing target with the receiver. Pass 0 to specify no options. targetをレシーバと比較する時に使うオプションのマスク。0を渡すことでオプション無しを指定します。

searchRange

The range in the receiver in which to search for target. それの中でtargetを求めて検索することになるレシーバの中の範囲。

Return Value 戻り値

A new string in which all occurrences of target, matched using options, in searchRange of the receiver are replaced by replacement. ある新しい文字列、それにおいてレシーバのsearchRangeにおいて、optionsを使って照合される、targetの全ての発生は、replacementによって置き換えられます。

See Also 参照

Replacing Substrings 下位文字列の置換

Related Documentation 関連文書