I am relatively new to regex but my aim is to strip all html tags from a string excluding <br>s and <a> tags with the class='user'. I want to user this regex to clean unwanted html garbage from contentedittable fields.
Hope one of you regex masters can help...
Here is an example to test on: http://gskinner.com/RegExr/?2tpai
I think I'm close, but the closing tag of the a class='user' is currently still being selected as garbage when it is required.
class='user'isn't the first attribute of the<a>tag? What if the anchor tag has other tags inside it (such as an<img>)? What if there are comments anywhere after your start tags, how will you know to skip over matches that appear inside them? I don't think you're close at all - I don't mean to be critical, merely to emphasize the point in my answer that this is technically impossible, and even getting "good enough" for casual use is very, very hard. There's undoubtedly even more issues that neither of us have considered. – Andrzej Doyle May 17 '11 at 7:49