前台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;