BcsResolver.Extensions.TextExtensions.RemoveAllWhitespaces C# (CSharp) Method

RemoveAllWhitespaces() public static method

public static RemoveAllWhitespaces ( this str ) : string
str this
return string
        public static string RemoveAllWhitespaces (this string str)
        {
            return Regex.Replace(str, @"\s+", "");
        }