欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

C# 字符串中多个连续空格转为一个空格

程序员文章站 2022-06-11 13:05:44
...
#region 字符串中多个连续空格转为一个空格
     /// <summary>
     /// 字符串中多个连续空格转为一个空格
     /// </summary>
     ///<param name="str">待处理的字符串
     /// <returns>合并空格后的字符串</returns>
     public static string MergeSpace(string str)
     {
         if (str != string.Empty &&
             str != null &&
             str.Length > 0
             )
         {
             str = new System.Text.RegularExpressions.Regex("[\\s]+").Replace(str, " ");
         }
         return str;
     }
 
 
     #endregion

以上就是C# 字符串中多个连续空格转为一个空格的内容,更多相关内容请关注PHP中文网(www.php.cn)!

相关标签: C# 字符串