Possible Duplicate:
RegEx match open tags except XHTML self-contained tags
I need to do some regex replacement on HTML input, but I need to exclude some parts from filtering by other regexp.
(e.g. remove all <a>
tags with specific href="example.com…
, except the ones that are inside the <form>
tag)
Is there any smart regex technique for this? Or do I have to find all forms using $regex1
, then split the input to the smaller chunks, excluding the matched text blocks, and then run the $regex2
on all the chunks?