谁帮解下正则呀
http://www.xh0214xh.com/ 文章网站 我要里面的 随机 一篇的标题跟 对应的链接谢谢各位大神了我记的我上次给你说过啊 string read = "你读取的文本";
string title ="";//声明变量 保存标题string content="";//声明变量 保存内容
Regex regex = new Regex("<title>(?<title>.*?)</title>");//匹配标题
if (regex.IsMatch(read))
{
title= regex.Match(read).Groups["title"].Value;
}
regex = new Regex("<a class=\"barbtnN\" href=\"/list_(?<a>.*?).html\">(?<title>.*?)</a><span class=\"rowline\"></span> ");//匹配内容
if (regex.IsMatch(read))
{
content= regex.Match(read).Groups["title"].Value;
}
title跟 content 分别就是标题跟内容了
把正则修改下就行了
页:
[1]