string.RemoveDoubleSpaceCharacters()

Here are the examples of the csharp api string.RemoveDoubleSpaceCharacters() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : StringExtensions.cs
with MIT License
from poppastring

public static string StripHTMLFromText(this string text)
		{
			text = WebUtility.HtmlDecode(text);
			text = text.RemoveLineBreaks();
			text = text.StripHtml();
			text = text.RemoveDoubleSpaceCharacters();
			text = text.Trim();
			text = text.RemoveQuotationMarks();

			return text;
		}