1

我正在使用以下代码从 htmlsource 获取所有图像链接,但没有返回链接。我应该在源代码中提供什么。

public List<Uri> FetchLinksFromSource(string htmlSource)
    {
        List<Uri> links = new List<Uri>();
        string regexImgSrc = @"<img[^>]*?src\s*=\s*[""']?([^'"" >]+?)[ '""][^>]*?>";
        MatchCollection matchesImgSrc = Regex.Matches(source, regexImgSrc, RegexOptions.IgnoreCase | RegexOptions.Singleline);
        foreach (Match m in matchesImgSrc)
        {
            string href = m.Groups[1].Value;
            links.Add(new Uri(href));
        }
        return links;
    }
4

1 回答 1

0

使用正则表达式 -

string regexImgSrc = @"<img.+?src=[\"'](.+?)[\"'].+?>";

于 2012-08-21T11:49:17.463 回答