AS 3.0 / Flash
- I am consuming XML which I have no control over.
- the XML has HTML in it which i am styling and displaying in a HTML text field.
- I want to remove all the html except the links.
Strip all HTML tags except links is not working for me.
does any one have any tips? regEx?
the following removes tables.
var reTable:RegExp = /<table\s+[^>]*>.*?<\/table>/s;
but now i realize i need to keep content that is the tables and I also need the links.
thanks!!!
cp