zoukankan
html css js c++ java
采集系统万能正则表达式
由于经常要写一些采集的程序,下面的三个函数是采集中的很常用的函数。姑且叫采集系统万能正则表达式吧。全部源码见
http://www.softbk.com/news.asp?id=3564
欢迎一起交流
//
获取页面的html源码
public
string
GetHtmlSource(
string
Url,
string
charset)
{
if
(charset
==
""
||
charset
==
null
) charset
=
"
gb2312
"
;
string
text1
=
""
;
try
{
HttpWebRequest request1
=
(HttpWebRequest)WebRequest.Create(Url);
HttpWebResponse response1
=
(HttpWebResponse)request1.GetResponse();
Stream stream1
=
response1.GetResponseStream();
StreamReader reader1
=
new
StreamReader(stream1, Encoding.GetEncoding(charset));
text1
=
reader1.ReadToEnd();
stream1.Close();
response1.Close();
}
catch
(Exception exception1)
{
}
return
text1;
}
public
string
SniffwebCode(
string
code,
string
wordsBegin,
string
wordsEnd)
{
string
NewsTitle
=
""
;
Regex regex1
=
new
Regex(
""
+
wordsBegin
+
@"
(?<title>[\s\S]+?)
"
+
wordsEnd
+
""
, RegexOptions.Compiled
|
RegexOptions.IgnoreCase);
for
(Match match1
=
regex1.Match(code); match1.Success; match1
=
match1.NextMatch())
{
NewsTitle
=
match1.Groups[
"
title
"
].ToString();
}
return
NewsTitle;
}
public
ArrayList SniffwebCodeReturnList(
string
code,
string
wordsBegin,
string
wordsEnd)
{
ArrayList urlList
=
new
ArrayList();
//
string NewsTitle = "";
Regex regex1
=
new
Regex(
""
+
wordsBegin
+
@"
(?<title>[\s\S]+?)
"
+
wordsEnd
+
""
, RegexOptions.Compiled
|
RegexOptions.IgnoreCase);
for
(Match match1
=
regex1.Match(code); match1.Success; match1
=
match1.NextMatch())
{
urlList.Add(match1.Groups[
"
title
"
].ToString());
}
return
urlList;
}
查看全文
相关阅读:
每天一个css text-indent
每天一个css word-break word-wrap white-space
[转载]CentOS+nginx+uwsgi+Python+django 环境搭建
【转】django使用model创建数据库表使用的字段
Django对mysql操作
mysql增删改查
mysql用户管理
centos7启动mysql
centos安装python3
[转载]python学习目录(转至袁先生的博客)
原文地址:https://www.cnblogs.com/wuyisky/p/978258.html
最新文章
LInux下LD_LIBRARY_PATH的作用与设置
myBatis初学经验----(1)
水仙花数字
nginx+php及优化
php-fpm配置文件详解
php.ini配置文件详解
php-fpm命令
php添加扩展
php7编译安装
PHP版本的区别
热门文章
php的fastcgi和php-fpm
nginx日志
nginx的rewrite详解
css 行内元素 块元素 替换元素 非替换元素 以及这些元素的width height margin padding 特性
css 两栏自适应布局--左边固定宽度 右边自适应
每天一个css border和inline
每天一个css outline、box-sizing与border
每天一个css css选择器
css总结
每天一个css 伪类
Copyright © 2011-2022 走看看