string replace(string str, string old, string new)
string replace(string str, string old, string new, int count)
old
文字列の部分すべてがnew
文字列で置換された文字列のコピーを返します。
count
指定すると、1個目からcount
個目までの該当文字列のみが置換されます。
Examples ¶
string str = "abcdef abcdef abcdef"; // "abcghi abcghi abcghi"を返します。 string new_str = replace(str, "def", "ghi"); // "def"文字列の部分が最大2個まで置換されます。 // "abcghi abcghi abcdef"を返します。 new_str = replace(str, "def", "ghi", 2);
See also | |
string |
|