http://soccer.titan24.com/2013-11-27/247638.html大家看一下这个网址,我要只筛选到
这些内容的HTML源码,求正则表达式怎么写呀?求大神帮忙…感激不尽!
—- 2分
用正则截取“<div class=”atxt f14″ id=”atxt”>……</div>”中间的东东,然后截取纯文本的前多少多少个字符。
—- 5分
var reg=new Regex(@”(?is)<div class=””atxt f14″” id=””atxt””>.*?(?=\s+<div class=””txtlist”””);string result=reg.Match(yourhtml).Value;
—-
http://www.chinanews.com/ty/2013/12-03/5572419.shtml
这个呢我只需要筛选到内容,到白云结束的HTML源码,求正则
这个呢我只需要筛选到内容,到白云结束的HTML源码,求正则
怎么不对呀???有错误
—- 18分
var reg=new Regex(@”(?is)<div class=””atxt f14″” id=””atxt””>.*?(?=\s+<div class=””txtlist””)”);少打了一个右括号
—-
恩。加上括号现在好了
—- 12分
var reg = new Regex(@"<div class=""atxt f14"" id=""atxt"">(?is:(?<Content>.*?))(?=\s+<div class=""txtlist"")"); Match math = reg.Match(str); Console.WriteLine(math.Groups["Content"].Value); ---- 3分
http://htmlagilitypack.codeplex.com/ 试试这个,HTML解析,方法绝大类似xmlDocumentm,用 xpath
CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明正则表达式筛选指定数据C#!