用cuteeditor6.0 得到的内容 <img alt="" src="/testCuteEditor/uploads/151033255_t.jpg" border="0" /> 可以用 string str = "这里是你从从数据库里读出的内容,包括很多图片的html标签(如 <img )" System.Text.RegularExpressions.Regex reg=new System.Text.RegularExpressions.Regex(@" <img[^>].*?src=""(? <src>[^""].*)""[^>].*?>",System.Text.RegularExpressions.RegexOptions.IgnoreCase); System.Text.RegularExpressions.MatchCollection m = reg.Matches(str); //设定要查找的字符串 for (int i = 0; i < m.Count; i++) { Response.Write(m[i].Groups["src"].ToString()+" <br>"); }