Hi
I want to extract the image url from any website. I am reading the source info through webRequest. I want a regular expression which will fetch the Image url from this content i.e the Src value in the tag.
Thanks
|
|
Hi I want to extract the image url from any website. I am reading the source info through webRequest. I want a regular expression which will fetch the Image url from this content i.e the Src value in the tag. Thanks |
||
|
|
|
|
I'd recommend using an HTML parser to read the html and pull the image tags out of it, as regexes don't mesh well with data structures like xml and html. In C#: (from this SO question)
|
||||
|
|
|
is a decent one I have used before. This gets any reference to an image file within an html document. I didn't strip " or ' around the match, so you will need to do that. |
||
|
|
|
Try this*:
Tested here with:
Gives
The $1 (you have to mouseover the match to see it) corresponds to the part of the regex between (). How you access that value will depend on what implementation of regex you are using. *If you want to know how this works, leave a comment EDIT As nearly always with regexp, there are edge cases:
This would be matched as 'hack'. |
|||
|
|