csharp的string去除所有空格
时间: 2024-01-31 11:03:43 浏览: 201
string 去掉空格
5星 · 资源好评率100%
你可以使用 C# 的 `Replace` 方法和空格字符 `" "` 来去除字符串中所有的空格。示例代码如下:
```csharp
string str = " This is a string with spaces. ";
str = str.Replace(" ", "");
Console.WriteLine(str); // 输出:Thisisastringwithspaces.
```
另外,如果你想去除字符串中的其他空白字符(如制表符 `\t` 和换行符 `\n` 等),可以使用 `Trim()` 方法。示例代码如下:
```csharp
string str = "\tThis is a \n string with spaces. ";
str = str.Trim();
Console.WriteLine(str); // 输出:This is a string with spaces.
```
阅读全文