zoukankan      html  css  js  c++  java
  • 将字符串 “ hello word,你 好 世 界 ! ” 两端空格去掉并且将其中的其他所有空格替换成一个空格 输出结果为“hello word,你 好 世界”

    string str = "     hello      word,你 好 世  界  !     ";
                string msg = str.Trim();  //去掉首尾空格
                //使用split分割字符串,stringSplitOptions枚举去掉空格返回字符串数组类型
                string[] s = msg.Split(new char[] { ' ' },StringSplitOptions.RemoveEmptyEntries);
                //for (int i = 0; i < s.Length; i++)
                //{
                //    Console.WriteLine(s[i]);
                //}
                //在使用字符串join连接参数,它string数据s 用空格连接起来
               string m= string.Join(" ", s);
                Console.WriteLine(m);
                Console.ReadKey();
  • 相关阅读:
    regedit注册表
    Environment应用
    VMI帮助类
    Image帮助类
    asp.net core+Postman
    printf和cout的区别详述
    C++指针
    Qt button和buttons区别
    visual studio收函数
    编译警告
  • 原文地址:https://www.cnblogs.com/xiaowie/p/9475206.html
Copyright © 2011-2022 走看看