替換字串中的字串
使用 System.String.Replace
方法,你可以用另一個字串替換字串的一部分。
string s = "Hello World";
s = s.Replace("World", "Universe"); // s = "Hello Universe"
所有出現的搜尋字串都將被替換:
string s = "Hello World";
s = s.Replace("l", "L"); // s = "HeLLo WorLD"
通過將空字串指定為替換值,String.Replace
也可用於刪除字串的一部分:
string s = "Hello World";
s = s.Replace("ell", String.Empty); // s = "Ho World"