Can anyone help me by explaining how to extract image urls from HTML File in C#
|
|
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 |
||
|
|
|
|
The HTML Agility Pack can do this - just use a query like //img and access the src - like so:
|
||||
|
|
|
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/ |
||
|
