日期:2014-05-17 浏览次数:20400 次
string html=@"<div><img src=""aa/cc.jpg"" alt=""""/></div>
<div><img src=""http://www.baidu.com/xx/cc.jpg"" alt=""""/></div>";
html=Regex.Replace(html,@"(?i)(?<=<img[^>]*?src=(['""]?))(http://www\.baidu\.com/)?[^'""]+\1(?=[^>]*?>)",
m=>m.Groups[2].Success?m.Value:"http://www.baidu.com/"+m.Value);