在c#的字符串,其中有许多空格,现要求是把多余的空格去除保留一个。原理是使用split()方法进行分割,分割有一个选项是removeemptyentries,然后再把分割后的字符串join起来。
1
2
3
4
5
|
string 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://www.cnblogs.com/insus/p/7954151.html