91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c#字符串怎么去除空格

c#
小億
332
2024-08-05 17:06:11
欄目: 編程語言

在C#中去除字符串中的空格有多種方法,以下是其中一些常用的方法:

  1. 使用Trim()方法去除字符串兩端的空格:
string str = "   Hello World   ";
str = str.Trim();
Console.WriteLine(str); // 輸出:Hello World
  1. 使用Replace()方法將空格替換為空字符串:
string str = "   Hello World   ";
str = str.Replace(" ", "");
Console.WriteLine(str); // 輸出:HelloWorld
  1. 使用正則表達式去除所有空格:
using System.Text.RegularExpressions;

string str = "   Hello World   ";
str = Regex.Replace(str, @"\s", "");
Console.WriteLine(str); // 輸出:HelloWorld
  1. 使用Split()方法將字符串按空格分割后再拼接:
string str = "   Hello World   ";
string[] words = str.Split(' ');
str = string.Join("", words);
Console.WriteLine(str); // 輸出:HelloWorld

這些方法可以根據需要選擇其中一種或組合使用。

0
漠河县| 镇坪县| 德清县| 承德县| 张家川| 治县。| 万源市| 溧阳市| 吴川市| 淅川县| 江华| 白沙| 电白县| 繁昌县| 久治县| 宁晋县| 鱼台县| 鞍山市| 雅安市| 庄浪县| 湟源县| 勐海县| 邛崃市| 海林市| 荣成市| 义马市| 广丰县| 东兴市| 怀宁县| 措勤县| 东至县| 张家口市| 富宁县| 湘阴县| 博湖县| 喜德县| 烟台市| 民勤县| 石家庄市| 都江堰市| 黄骅市|