Jason LaMar wrote: > Now, here's what I want to do. Extract image HTML code in this format ... > > <img src="images/imagename.jpg" width="x" height="y" alt="[ Image > Description ]"> > > .... so that only the Image Description is left. Basically, I want to delete > all the rest of the code but leave the "alt" tag information intact.
consider using html::parser. it may be an easier solution than struggling with your own regex. http://search.cpan.org/search?dist=HTML-Parser -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
