获取字符串中img标签的url集合(转载)

/// <summary> 
/// 获取字符串中img的url集合 
/// </summary> 
/// <param name="content">字符串</param> 
/// <returns></returns> 
public static List<string> GetImgUrl(string content)
{
Regex rg = new Regex("src=\"([^\"]+)\"", RegexOptions.IgnoreCase);
var img = rg.Match(content);
List<string> imgUrl = new List<string>();
while (img.Success)
{
imgUrl.Add(img.Groups[1].Value); 
img = img.NextMatch();
}
return imgUrl;
}

忘记是从哪里弄的代码了,原作者看见留言一下,我会加上地址的

posted on 2017-01-05 14:29  小门  阅读(1552)  评论(0编辑  收藏  举报

导航