如何通过正则表达式提取出img标签
展开全部
string str = @"夹杂的文字夹杂的文字13414 <img alt="""" border=""0"" src=""http://www.isy.cn/image/2081955/1_billy0217_B1.jpg"" /> <img alt="""" border=""0"" src=""http://www.isy.cn/image/208191/1_billy0217_B2.jpg"" />夹杂的文字134 <img alt="""" border=""0"" src=""http://www.isy.cn/image/208192/1_billy0217_B3.jpg"" />夹杂的文字14134 <img alt="""" border=""0"" src=""http://www.isy.cn/image/2081933/1_billy0217_B4.jpg"" /> 夹杂的文字夹杂的文字13414314 ";
Regex reg = new Regex("<img.*?>", RegexOptions.IgnoreCase);
MatchCollection mc = reg.Matches(str);
foreach (Match m in mc)
{
Response.Write(Server.HtmlEncode(m.Value) + "<BR>");
}
Regex reg = new Regex("<img.*?>", RegexOptions.IgnoreCase);
MatchCollection mc = reg.Matches(str);
foreach (Match m in mc)
{
Response.Write(Server.HtmlEncode(m.Value) + "<BR>");
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询