<img alt="imagey" src="http://example.com/image.gif" width="10">
Now, what the regular expression has to do is extract only the part for the src from the image tag, meaning http://example.com/image.gif. Everything else has to be disregarded, no matter what it says before or after that.
Also, it would have to be compatible so that there are more images in a row;
<img alt="imagey" src="http://example.com/image.gif" width="10"><img alt="imagey" src="http://example.com/image.gif" width="10"><img alt="imagey" src="http://example.com/image.gif" width="10">
and that would recover the src from all of them.
Also there mayb be or may not be a " or a '. meaning it would be either:
src="IMAGELINK"
src='IMAGELINK'
src=IMAGELINK
It's been tried several times with several options but none seem to work.
This seems a bit more complicated. Any help is appreciated.
Thanks.
Last edited by wooper; 04-03-2005 at 12:19 PM..
|