在C#中,可以使用Replace
方法或者Regex
類來去掉指定字符。
Replace
方法:string originalString = "Hello, World!";
char charToRemove = ',';
string newString = originalString.Replace(charToRemove.ToString(), ""); // 去掉指定字符
Console.WriteLine(newString); // 輸出 "Hello World!"
Regex
類:using System.Text.RegularExpressions;
string originalString = "Hello, World!";
char charToRemove = ',';
string pattern = Regex.Escape(charToRemove.ToString());
string newString = Regex.Replace(originalString, pattern, ""); // 去掉指定字符
Console.WriteLine(newString); // 輸出 "Hello World!"
以上代碼演示了如何移除指定字符,你可以根據具體情況選擇合適的方法來實現。