在C#中去除字符串中的空格有多種方法,以下是其中一些常用的方法:
Trim()
方法去除字符串兩端的空格:string str = " Hello World ";
str = str.Trim();
Console.WriteLine(str); // 輸出:Hello World
Replace()
方法將空格替換為空字符串:string str = " Hello World ";
str = str.Replace(" ", "");
Console.WriteLine(str); // 輸出:HelloWorld
using System.Text.RegularExpressions;
string str = " Hello World ";
str = Regex.Replace(str, @"\s", "");
Console.WriteLine(str); // 輸出:HelloWorld
Split()
方法將字符串按空格分割后再拼接:string str = " Hello World ";
string[] words = str.Split(' ');
str = string.Join("", words);
Console.WriteLine(str); // 輸出:HelloWorld
這些方法可以根據需要選擇其中一種或組合使用。