Subtext.Framework.BlogInfo.StripWwwPrefixFromHost C# (CSharp) 메소드

StripWwwPrefixFromHost() 공개 정적인 메소드

Strips www prefix from host name.
public static StripWwwPrefixFromHost ( string host ) : string
host string Host.
리턴 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);
        }