有多種方法可以去除字符串中的所有空格,以下是其中一種方法:
string str = " Hello, World! ";
string result = new string(str.Where(c => !Char.IsWhiteSpace(c)).ToArray());
Console.WriteLine(result); // Output: Hello,World!
在這個示例中,我們使用Where
方法和Char.IsWhiteSpace
方法來過濾掉字符串中的所有空格字符。然后使用ToArray
方法將過濾后的字符數組轉換為字符串。