2012年5月19日

正则域名1

摘要: public string GetUrlDomainName(string url) { //获取域名的正则表达式 string p = @"http://[^\.]*\.(?<domain>[^/|?]*)"; Regex reg = new Regex(p, RegexOptions.IgnoreCase);//不区分大小写匹配 //正则表达式匹配结果 Match m = reg.Match(url); //返回匹配结果值 ... 阅读全文

posted @ 2012-05-19 13:57 HOT SUMMER 阅读(241) 评论(0) 推荐(0) 编辑

User-Agent

摘要: bulider.AppendLine("User-Agent: Mozilla/5.0 (Windows NT 6.1; IE 9.0)"); sbSend.Append("User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)\r\n");requestHeaders.Add("User-Agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; 阅读全文

posted @ 2012-05-19 11:33 HOT SUMMER 阅读(212) 评论(0) 推荐(0) 编辑

各种浏览器的userAgent

摘要: IE 而IE各个版本典型的userAgent如下: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0) Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2) Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) Mozilla/4.0 (compatible; MSIE 5.0; Windows NT) 其中,版本号是MSIE之后的数字。 Firefox Firefox几个版本的userAgent大致如下: Mozilla/5.0 (Wi... 阅读全文

posted @ 2012-05-19 11:28 HOT SUMMER 阅读(1009) 评论(0) 推荐(0) 编辑

invokerequied

摘要: if (webBrowser1.InvokeRequired) { webBrowser1.Invoke(new MethodInvoker(() => { try { ie.IEFlow.Wait(Config.DwddTime); } catch { } })); } else { ie.IEFlow.Wait(Config.DwddTime); } 阅读全文

posted @ 2012-05-19 11:09 HOT SUMMER 阅读(176) 评论(0) 推荐(0) 编辑

正则域名

摘要: public string GetUrlDomainName(string url) { //获取域名的正则表达式 string p = @"http://[^\.]*\.(?<domain>[^/|?]*)"; Regex reg = new Regex(p, RegexOptions.IgnoreCase);//不区分大小写匹配 //正则表达式匹配结果 Match m = reg.Match(url); //返回匹配结果值 return m.Groups["domain"].Value; }获取域名就不说了吧 下面是正则的使用 publi 阅读全文

posted @ 2012-05-19 10:27 HOT SUMMER 阅读(2955) 评论(0) 推荐(0) 编辑

C# 正则域名

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;using System.Text.RegularExpressions;namespace rexurl{ class Program { static void Main(string[] args) { string regex = @"(?i)http://(\w+\.){2,3}(com(\.cn)?|cn|net)\b"; string content = " 阅读全文

posted @ 2012-05-19 10:08 HOT SUMMER 阅读(534) 评论(0) 推荐(0) 编辑

导航