c# 字符串中多个连续空格转为一个空格
Posted PowerZhang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# 字符串中多个连续空格转为一个空格相关的知识,希望对你有一定的参考价值。
#region 字符串中多个连续空格转为一个空格
/// <summary>
/// 字符串中多个连续空格转为一个空格
/// </summary>
/// <param name="str">待处理的字符串</param>
/// <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# 字符串中多个连续空格转为一个空格的主要内容,如果未能解决你的问题,请参考以下文章