您的位置:首页 > 其它

正则表达式的初体验:分析字符串数据

2007-02-16 22:08 381 查看
在程序中,对于数据的分析是非常重要及常见的。对于字符串数据的分析,往往就是对字符串的内容提取,捕获和替换。除非你要做的分析是简单的要求,否则你就不要再使用string的IndexOf、LastIndexOf、StartsWith 和 EndsWith 方法了,而是应该改用正则表达式搜索字符串。
正则表达式虽然学习起来非常的另人头痛和难过,但他也实在是非常的有效。
.NET Framework 正则表达式引擎是回溯的正则表达式匹配器,它并入了传统的非确定性有限自动机 (NFA) 引擎,虽然相比纯正则表达式确定性有限自动机 (DFA) 引擎来讲,速度上面有点慢,但功能更加强大了。
通过强大的正则表达式,可以作很多分析服务

1 //要求整个数字可以有-号,精度必须为2
2 string pattern = @"^-?\d+(\.\d{2})?$";
3 System.Text.RegularExpressions.Regex rx = new System.Text.RegularExpressions.Regex(pattern);
4 for (int i = 0; i <= patternTest.Length - 1; i++)
6 string pattern = @"^[-|+]?\d+(\.\d{0,2})?$";
2 System.Text.RegularExpressions.Regex rx = new System.Text.RegularExpressions.Regex(pattern);
3 for (int i = 0; i <= patternTest.Length - 1; i++)
5 string url = "Http://news.sina.com.cn";
2 System.Net.WebRequest request = System.Net.WebRequest.Create(url);
3 System.Net.HttpWebResponse response = (System.Net.HttpWebResponse)request.GetResponse();
4 System.IO.Stream httpStream = response.GetResponseStream();
5 System.IO.StreamReader htmlRead = new System.IO.StreamReader(httpStream);
6 string html = htmlRead.ReadToEnd();
7
8 //System.Console.WriteLine(html);
9
10
11 string pattern = @"http://([\w-]+\.)+[\w-]+(/[\w- ./?%&=]*)?";
12 System.Text.RegularExpressions.Regex rx = new System.Text.RegularExpressions.Regex(pattern);
13 System.Text.RegularExpressions.MatchCollection matches = rx.Matches(html);
14
15 for (int i = 0; i <= matches.Count - 1; i++)
16 {
17 System.Console.WriteLine(matches[i].Value);
18 }

运行结果是,显示所有连接,大致如下 http://www.nen.com.cn/ target=_blank http://www.tianshannet.com.cn/ target=_blank http://www.nmgcb.com.cn/ target=_blank http://www.jxcn.cn/ target=_blank http://www.szed.com/ target=_blank http://www.hljdaily.com.cn/ target=_blank http://www.hifly.tv/ target=_blank http://www.chinalegalnews.com.cn/ target=_blank http://www.newssc.org http://www.sconline.com.cn/ target=_blank http://www.xawb.com/gb/news/node_2.htm target=_blank http://www.anhuinews.com/ target=_blank http://www.xinminweekly.com.cn/ target=_blank http://news.cnhubei.com/ target=_blank http://www.sdnews.com.cn/ target=_blank http://www.qingdaonews.com/ target=_blank http://www.dzwww.com/ target=_blank http://www.66wz.com/cmsweb/webportal/ target=_blank http://www.bjd.com.cn/ target=_blank http://www.beijing.org.cn http://news.sina.com.cn/media.html target=_blank http://image2.sina.com.cn/c.gif width=1 height=1 http://tech.sina.com.cn/focus/sinahelp.shtml target=_blank http://net.china.cn/chinese/index.htm target=_blank http://corp.sina.com.cn/chn/ class=sinatail http://corp.sina.com.cn/eng/ class=sinatail http://ads.sina.com.cn/ class=sinatail http://www.sina.com.cn/contactus.html class=sinatail http://corp.sina.com.cn/chn/sina_job.html class=sinatail http://www.sina.com.cn/intro/lawfirm.shtml class=sinatail http://english.sina.com http://members.sina.com.cn/apply/ class=sinatail http://tech.sina.com.cn/focus/sinahelp.shtml class=sinatail http://www.sina.com.cn/intro/copyright.shtml class=sinatail http://ad4.sina.com.cn/200702/13/82610_news-couple-l.swf http://ad4.sina.com.cn/200702/13/82609_news-couple-r.swf http://ad4.sina.com.cn/sina/ae/ad_src/couplet/coupletv4.js http://rm.sina.com.cn/icast/rotator.js http://cast.icast.com.cn/a/4/4/1/9/1/389.js http://image2.sina.com.cn/unipro/pub/getclickinfo_sinahome.js
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐