I need to remove all JS ad Html comments (inline + multi line)
So far, I’ve found this:
/(\/\*[\w\'\s\r\n\*]*\*\/)|(\/\/[\w\s\']*)|(\<![\-\-\s\w\>\/]*\>)/
I could able to match almost every comments but except this kind of comment
<!-- Google Tag Manager (noscript) -->
I’m bit doubt about inside brackets. Any idea about how to efficently achieve this.
Thanks in advance.