Problem

4 /4


文字列内の部分文字列を置換する

Theory Click to read/hide

C# で文字列内の 1 つの部分文字列を別の部分文字列に置き換えるには、 を使用します。 Replace() メソッド。次の 2 つの使用例があります。
Replace(char old, char new) -  char old char new に置き換えられます。
Replace(string old, string new) -  string old string new で置き換えられます。つまり、複数の文字を置き換えることができます。

C# でのインライン置換の例:

string phone = "+1-234-567-89-10";
// ハイフンはスペースに変更されます
string edited_phone =phone.Replace("-", "  ");
// +1 234 567 89 10

Problem

文字列を指定します。この行  1  のすべての数字を  one という単語に置き換えます。 
入力: 文字列を入力します。
出力: 問題の答えを出力します (文字列)。

<本体>
入力 インプリント
1+1=2 one+one=2