I am trying to write a regex to strip all HTML with the exception of links (the <a href and </a> tags respectively. It does not have to be 100% secure (I am not worried about injection attacks or anything as I am parsing content that has already been approved and published into a SWF movie).
The original "strip tags" RegEx I'm using was <(.|\n)+?>, and I tried to modify it to <([^a]|\n)+?>, but that of course will allow any tag that has an a In it rather than one that has it in the beginning, with a space.
Not that it should really matter, but in case anyone cares to know I am writing this in AS3 for a Flash movie.
