C#提取网页中超链接link和text部分的方法

前端技术 2023/09/09 C#

本文实例讲述了C#提取网页中超链接link和text部分的方法。分享给大家供大家参考,具体如下:

string s = \"..\";
Regex re = new Regex(@\"<a[^>]*href=(\"\"(?<href>[^\"\"]*)\"\"|\'(?<href>[^\']*)\'|(?<href>[^\\s>]*))[^>]*>(?<text>.*?)</a>\", RegexOptions.IgnoreCase | RegexOptions.Singleline);
Match m = re.Match(s);
if(m.Success)
{
 string link = m.Groups[\"href\"].Value;
 string text = Regex.Replace(m.Groups[\"text\"].Value,\"<[^>]*>\",\"\");
 Console.WriteLine(\"link:{0}\\ntext:{1}\", link, text);
}

更多关于C#相关内容感兴趣的读者可查看本站专题:《C#正则表达式用法总结》及《C#字符串操作技巧总结》

希望本文所述对大家C#程序设计有所帮助。

本文地址:https://www.stayed.cn/item/25184

转载请注明出处。

本站部分内容来源于网络,如侵犯到您的权益,请 联系我

我的博客

人生若只如初见,何事秋风悲画扇。