How would I remove all of a an html input but comments? For example:
This <html><body><!-- hello paragraph --><p>hello</p></body></html>
Would turn into this: This <!-- hello paragraph -->
How would I do this? Thanks!
Edit: I know you can do stuff like this with regular expressions, But I don't know how.