Consider a html page which having several comments; which is not good for mobile webpages, as its size must be very low. So better rebuild the html page.
Here a script written using php, where it removes the html comments (including the matter inside <!-- and -->
single line code for that
$str = preg_replace('/<!--*?-->/i', '', $str);
Thank you for this code.It will help me to build my site.
Acai Berry
didnt work for me, use
preg_replace('/))*.-->/i', '', $html);