1\/\*.+?\*\/
2use the above expression to remove /* CSS comments */
3
4<!--(.*?)-->
5use the above expression to remove <!-- HTML comment -->
6
7((?:\/\*(?:[^*]|(?:\*+[^*\/]))*\*+\/)|(?:\/\/.*))
8this one is a general expression to remove also //JS comment + /* CSS comment */
9