首页 > 编程 > C# > 正文

如何去除字符串中间的空格

2023-05-09 18:58:24
字体:
来源:转载
供稿:网友

使用Trim只能去除字符串前端和后端的空ge,那么字符串中间的空ge如何去掉呢?下面给出一个完整的程序:

using System;
using System.Collections.Generic;
using System.Text;

class TrimAll
{
    string trimAllSpace(string str)
    {
        string temp = "";
        for (int i = 0; i < str.Length; i++)
            if (str[i] != ' ')
                temp += str[i].ToString();
        return temp;
    }
    public static void Main()
    {
        TrimAll ta = new TrimAll();
        string testStr = "I Love China! I Love Chinese People!";
        string reStr = ta.trimAllSpace(testStr);
        Console.WriteLine("源字符串:" + testStr);
        Console.WriteLine("去掉空ge后的字符串:"+reStr);
    }
}

运行结果如下:

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表