Problem

4 /4


替换字符串中的子字符串

Theory Click to read/hide

要用 C# 中的字符串替换一个子字符串,请使用 方法 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