在C#中,可以使用Trim()方法來去除字符串的前導(dǎo)和尾隨空格。示例如下:
string str = " Hello, world! ";
string trimmedStr = str.Trim();
Console.WriteLine(trimmedStr); // 輸出:Hello, world!
如果要去除字符串中所有空格(包括中間空格),可以使用Replace()方法來替換空格為空字符串,示例如下:
string str = "Hello, world!";
string trimmedStr = str.Replace(" ", "");
Console.WriteLine(trimmedStr); // 輸出:Hello,world!
另外,也可以使用正則表達式來去除字符串中的所有空格,示例如下:
using System.Text.RegularExpressions;
string str = "Hello, world!";
string trimmedStr = Regex.Replace(str, @"\s+", "");
Console.WriteLine(trimmedStr); // 輸出:Hello,world!