在C#中,可以使用string.Trim()
方法去除字符串首尾的空白字符,或者使用string.Trim(char[] chars)
方法去除指定字符。
以下是兩種方法的示例代碼:
string.Trim()
方法去除字符串首尾的空白字符:string str = " Hello, World! ";
string result = str.Trim();
Console.WriteLine(result); // 輸出:"Hello, World!"
string.Trim(char[] chars)
方法去除指定字符:string str = "###Hello,###World!###";
char[] charsToTrim = { '#', ' ' };
string result = str.Trim(charsToTrim);
Console.WriteLine(result); // 輸出:"Hello,World!"
在上述示例中,string.Trim()
方法默認去除空格、制表符和換行符等空白字符,string.Trim(char[] chars)
方法則可以去除指定的字符集合。