vote up 2 vote down star
1

Can anyone help me by explaining how to extract image urls from HTML File in C#

flag

3 Answers

vote up 1 vote down

You have to parse the HTML and check the img tag use the following link it includes C# library for parsing HTML tags i faced your problem b4 and i used this library and working well with me Parsing HTML tags

link|flag
vote up 10 vote down

The HTML Agility Pack can do this - just use a query like //img and access the src - like so:

string html;
using (WebClient client = new WebClient()) {
    html = client.DownloadString("http://www.google.com");
}
HtmlDocument doc = new HtmlDocument();        
doc.LoadHtml(html);
foreach(HtmlNode img in doc.DocumentNode.SelectNodes("//img")) {
    Console.WriteLine(img.GetAttributeValue("src", null));
}
link|flag
+1 I painfully wrote a SO vote counter/tag using Regex yesterday. This would have helped a lot. – Mehrdad Apr 26 at 9:51
Wouldn't it be easier to use a regex? – Peter Wone Apr 26 at 11:04
vote up -1 vote down

I think I need more information about your problem... But try to search for a regular expression containing "img src= ..>"

maybe something like '#<\s*img [^>]src\s=\s*(["\'])(.*?)\1#im'

You can read something about this problem in this article

http://zytzagoo.net/blog/2008/01/23/extracting-images-from-html-using-regular-expressions/

link|flag
Regex is notoriously painful for handling the full set of xml/html possibilities. – Marc Gravell Apr 26 at 9:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.