Remove extra spaces from string using regular expression, asp.net, c#
Removes extra space from the string using Regular expression. public static readonly RegexOptions Options =         RegexOptions.IgnorePatternWhitespace | RegexOptions.Singleline; public string RemoveExtaSpaces(string text) { Regex regex = new Regex(@”\s{2,}”, Options); text = regex.Replace(text.Trim(), ” “); //This line removes extra spaces and make space exactly one. //To remove the space between the end of a word [...]
