예제 #1
0
파일: WebSite.cs 프로젝트: fangxu/SEO-Tool
 public WebSite(String url, MainForm form)
 {
     Match m = Regex.Match(url, @"^http://(\S*)/*$");
     if (m.Success)
     {
         url = m.Groups[1].Value;
     }
     this.url = url;
     alexa = new AlexaDetail();
     this.form = form;
 }
예제 #2
0
        public WebSite(String url, MainForm form)
        {
            Match m = Regex.Match(url, @"^http://(\S*)/*$");

            if (m.Success)
            {
                url = m.Groups[1].Value;
            }
            this.url  = url;
            alexa     = new AlexaDetail();
            this.form = form;
        }