当前位置: 代码迷 >> ASP.NET >> asp.net C#截取字符串.
  详细解决方案

asp.net C#截取字符串.

热度:7005   发布时间:2013-02-25 00:00:00.0
asp.net C#截取字符串............................................在线等
前台js读出页面的所有html源码存储在 string 里

我想获取图片的名称:

C# code
...<IMG id=IMG1 style="DISPLAY: inline" alt=iBanner onerror="javascript:this.src=''" src="http://localhost:2673/Platform/Image/AllBanner/join.jpg" width="100%">...


我想取出 join.jpg 有没有什么好方法?

------解决方案--------------------------------------------------------
string pattern = @"(?i)<img.*?alt=iBanner.*?src="".*?(\w+\.jpg)[^>]*>";
string img= Regex.Match(str, pattern).Value;
  相关解决方案