how do i remove html / PHP /JS commented lines?
Posted: Mon Oct 08, 2012 5:42 pm
Hi there... i have thousands of php files with HTML PHP and JS commented lines Ej:
great software by the way...
txn
Code: Select all
<html>
Hi this is my file text
<script type="text/javascript">
// need to remove this...
/* and this...*/
</script>
<!-- ...i need to remove this too.. -->
<?php
// ..need to remove this too...
/* and this too... */
?>
<style>
.class{
margin: 1px; /* and finally this */
}
</style>
</html>

txn