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.
新しい文字列を返します、そこにおいてレシーバの指定された範囲の中の目標文字列のすべての出現は、別の指定された文字列によって置き換えられます。
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
関連文書
- stringByReplacingPercentEscapesUsingEncoding:
Returns a new string made by replacing in the receiver all percent escapes with the matching characters as determined by a given encoding.
レシーバにおいて全てのパーセントエスケープを、与えられた符号化によって判定されるときに、マッチする文字で置き換えることによって作られる新しい文字列を返します。