string text = "<IMG src=\"/web1/UploadFile/admin/2008-6/11111111.jpg\" border=0> ";
            Match m = Regex.Match(text, "<IMG[^>]*?\\s+src=['\"]?([^\"].*?)['\"]?\\s+[^>]*?>");
            if (m.Success)
            {
                text = m.Groups[1].Value;
            }
            Response.Write(text);

相关文章:

  • 2021-09-21
猜你喜欢
  • 2022-12-23
  • 2022-01-04
  • 2021-10-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案