我就会去掉两端的空格,中间的双重空格怎么换成单空格啊?谢谢作者: lmm 时间: 2014-4-2 20:25
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace 字符串中多余空格
{
class Program
{
static void Main(string[] args)
{
string hello = " hello world,你 好 世界 ! ";//原字符串
string[] strs = (hello.Trim()).Split(' ');
List<string> strList = new List<string>();
foreach (string str in strs)
{
if (str!="")
{
strList.Add(str);
}
}
Console.WriteLine(string.Join(" ", strList));