要用 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