日期:2014-05-17 浏览次数:20429 次
string s = @".......<IMG id=abc border=0 src='http://localhost/Uploads/2010/08/a197b6e6-bb21-4ee1-8d23-f232af148bd1.gif'>"; Regex reg = new Regex(@"(?i)<img[^>]*?src=(['""]?)([^'""\s>]+)\1[^>]*>"); Match m = reg.Match(s); if (m.Success) { richTextBox2.Text = m.Groups[2].Value; //这里就是src中的图片路径值 }
------解决方案--------------------
另一种使用函数,请参考:
http://yunxingfengzw--007.blog.163.com/blog/static/16484003201131485852997/