For example- <img src="http://www.yahoo.com">
here's the pattern I've been trying-
/\bsrc=(['|"])[^\\1]*[\\1]/im
Basically, match the 'src=' followed by some type of quote, followed by stuff that's not the quote originally matched, followed by the same quote.
But, obviously, I can't run this, because the quotes in the pattern close off the string I'm trying to create.
Are there ways of working with quotes? Or do I need to do something stupid like run it twice with either kind of quotes? Or perhaps there's a better way??
Thanks- Thaddeus
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php