ジャンプ先: 概要. 戻り値. MEL 例.

概要

string substituteAllString(string $text, string $searchStr, string $replaceStr)

テキスト文字列内のある 1 文字の出現をすべて、任意の長さの新しい文字列で置き換えます。

戻り値

なし

引数

変数名 変数タイプ 説明
$textstring- 修正するオリジナルの文字列です。
$searchStrstring- 置き換える単一の文字列です。
$replaceStrstring- 追加する文字列です。

MEL 例

    string $text = "one + two + three + four";
    string $result = substituteAllString($text, "+", "plus");
    print $result;