有多种方法可以去除字符串中的所有空格,以下是其中一种方法:
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
方法将过滤后的字符数组转换为字符串。