会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
yruigood
博客园
首页
新随笔
联系
订阅
管理
公告
取出网页源文件A标签里的超链接
Posted on
2008-08-28 16:13
Yruigood
阅读(
927
) 评论(
2
)
编辑
收藏
举报
Code
string
strRegex
=
@"
<a.+?a>
"
;
Regex regex;
MatchCollection matchCollection;
regex
=
new
Regex(strRegex, RegexOptions.IgnoreCase);
matchCollection
=
regex.Matches(strHTML);
for
(
int
i
=
0
; i
<
matchCollection.Count; i
++
)
{
//
用数组保存取得的A标签;
string
[] strArray
=
MemoryTitleUrl(matchCollection[i].Value);
}
//
其中strHTML是包含众多A标签的string串
//
记得引用using System.Text.RegularExpressions;
刷新页面
返回顶部
Copyright © 2024 Yruigood
Powered by .NET 9.0 on Kubernetes