日期:2014-05-17  浏览次数:20449 次

求三个个正则!
一。去除所有超链接,任何情况。
二。去除<a href="http:// || <a href='http:// 格式的超链接
三。<a href="http://www.2elove.com 去除不是这个地址的超链接

------解决方案--------------------
content = Regex.Replace(content, "<a href=\"http://.+\">.+</a *>", "");
content = Regex.Replace(content, "<a href='http://.+\'>.+</a *>", "");