Subtext.Framework.BlogInfo.StripWwwPrefixFromHost C# (CSharp) Method

StripWwwPrefixFromHost() public static method

Strips www prefix from host name.
public static StripWwwPrefixFromHost ( string host ) : string
host string Host.
return string
        public static string StripWwwPrefixFromHost(string host)
        {
            if (String.IsNullOrEmpty(host))
                throw new ArgumentException("Cannot strip the www prefix from a null host", "host");

            return Regex.Replace(host, @"^www.", string.Empty, RegexOptions.IgnoreCase);
        }