c# 正则表达式对网页进行有效内容抽取

刘永川1309

刘永川1309

2016-02-19 10:05

每个人都希望每天都是开心的,不要因为一些琐事扰乱了心情还,闲暇的时间怎么打发,关注图老师可以让你学习更多的好东西,下面为大家推荐c# 正则表达式对网页进行有效内容抽取,赶紧看过来吧!
搜索引擎中一个比较重要的环节就是从网页中抽取出有效内容。简单来说,就是吧HTML文本中的HTML标记去掉,留下我们用IE等浏览器打开HTML文档看到的部分(我们这里不考虑图片).
将HTML文本中的标记分为:注释,script ,style,以及其他标记分别去掉:
1.去注释,正则为:
output = Regex.Replace(input, @"!--[^-]*--", string.Empty, RegexOptions.IgnoreCase);
2.去script,正则为:
ouput = Regex.Replace(input, @"script[^]*?.*?/script", string.Empty, RegexOptions.IgnoreCase | RegexOptions.Singleline);
output2 = Regex.Replace(ouput , @"noscript[^]*?.*?/noscript", string.Empty, RegexOptions.IgnoreCase | RegexOptions.Singleline);
3.去style,正则为:
output = Regex.Replace(input, @"style[^]*?.*?/style", string.Empty, RegexOptions.IgnoreCase | RegexOptions.Singleline);
4.去其他HTML标记
result = result.Replace(" ", " ");
result = result.Replace(""", """);
result = result.Replace("", "");
result = result.Replace("", "");
result = result.Replace("&", "&");
result = result.Replace("br", "rn");
result = Regex.Replace(result, @"[sS]*?", string.Empty, RegexOptions.IgnoreCase);
以上的代码中大家可以看到,我使用了RegexOptions.Singleline参数,这个参数很重要,他主要是为了让"."(小圆点)可以匹配换行符.如果没有这个参数,大多数情况下,用上面列正则表达式来消除网页HTML标记是无效的.
HTML发展至今,语法已经相当复杂,上面只列出了几种最主要的标记,更多的去HTML标记的正则我将在
Rost WebSpider 的开发过程中补充进来。
下面用c#实现了一个从HTML字符串中提取有效内容的类:
using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
class HtmlExtract
{
#region private attributes
private string _strHtml;
#endregion
#region public mehtods
public HtmlExtract(string inStrHtml)
{
_strHtml = inStrHtml
}
public override string ExtractText()
{
string result = _strHtml;
result = RemoveComment(result);
result = RemoveScript(result);
result = RemoveStyle(result);
result = RemoveTags(result);
return result.Trim();
}
#endregion
#region private methods
private string RemoveComment(string input)
{
string result = input;
//remove comment
result = Regex.Replace(result, @"!--[^-]*--", string.Empty, RegexOptions.IgnoreCase);
return result;
}
private string RemoveStyle(string input)
{
string result = input;
//remove all styles
result = Regex.Replace(result, @"style[^]*?.*?/style", string.Empty, RegexOptions.IgnoreCase | RegexOptions.Singleline);
return result;
}
private string RemoveScript(string input)
{
string result = input;
result = Regex.Replace(result, @"script[^]*?.*?/script", string.Empty, RegexOptions.IgnoreCase | RegexOptions.Singleline);
result = Regex.Replace(result, @"noscript[^]*?.*?/noscript", string.Empty, RegexOptions.IgnoreCase | RegexOptions.Singleline);
return result;
}
private string RemoveTags(string input)
{
string result = input;
result = result.Replace(" ", " ");
result = result.Replace(""", """);
result = result.Replace("", "");
result = result.Replace("", "");
result = result.Replace("&", "&");
result = result.Replace("br", "rn");
result = Regex.Replace(result, @"[sS]*?", string.Empty, RegexOptions.IgnoreCase);
return result;
}
#endregion
展开更多 50%)
分享

猜你喜欢

c# 正则表达式对网页进行有效内容抽取

Web开发
c# 正则表达式对网页进行有效内容抽取

正则表达式 c#

Web开发
正则表达式 c#

s8lol主宰符文怎么配

英雄联盟 网络游戏
s8lol主宰符文怎么配

C#正则表达式应用范例

编程语言 网络编程
C#正则表达式应用范例

解读 C# 中的正则表达式

编程语言 网络编程
解读 C# 中的正则表达式

lol偷钱流符文搭配推荐

英雄联盟 网络游戏
lol偷钱流符文搭配推荐

常用正则 常用的C#正则表达式

编程语言 网络编程
常用正则 常用的C#正则表达式

C#中正则表达式使用教程

软件教程
C#中正则表达式使用教程

lolAD刺客新符文搭配推荐

英雄联盟
lolAD刺客新符文搭配推荐

禁止站外提交表单

禁止站外提交表单

关于C++使用指针 堆和栈的区别分析

关于C++使用指针 堆和栈的区别分析
下拉加载更多内容 ↓