public static string MergeSpace(string str) { if (!string.IsNullOrEmpty(str)) { str = new System.Text.RegularExpressions.Regex("[\\s]+").Replace(str, " "); } return str; }
public static string MergeSpace(string str) { if (!string.IsNullOrEmpty(str)) { str = new System.Text.RegularExpressions.Regex("[\\s]+").Replace(str, " "); } return str; }