字符串中去除多余的空格保留一个(C#)
2021-04-24 15:27
标签:event tar 一个 opp onclick 原理 trim close nbsp 在C#的字符串,其中有许多空格,现要求是把多余的空格去除保留一个。原理是使用Split()方法进行分割,分割有一个选项是RemoveEmptyEntries,然后再把分割后的字符串Join起来。 字符串中去除多余的空格保留一个(C#) 标签:event tar 一个 opp onclick 原理 trim close nbsp 原文地址:http://www.cnblogs.com/insus/p/7954151.htmlstring string1 = "AAaaA Oopps 32 211 44.8 69 15.9 C# 36.7 0.6 ";
string[] arr = string1.Trim().Split(new char[] { ‘ ‘ }, StringSplitOptions.RemoveEmptyEntries);
string result = string.Join(" ", arr);
Console.WriteLine(result);
文章标题:字符串中去除多余的空格保留一个(C#)
文章链接:http://soscw.com/index.php/essay/78998.html