Been trying all manner of regex for the last couple of days, no joy.
Trying to do some regex modification on a VERY limited subset of html tags, specifically img tags but only ones like this:
<img src="picture.jpg">
and NOT ones like this:
<img src="site.com/picture.jpg">
Also those tags are mixed in with other text before and after them, so the regex needs to ignore that stuff but still work on the tags. Can't for the life of me figure it out, can anyone help?