I need to find a regular expression for replace the commentaires in my js files. What i want is transform all line like this :
//it's a commentaire
into this
/* it's a commentaire */
Because i try to optimize my files, and there are issues i think it's come from this. I use php function file_get_content, and it create a string in one line, so all the string become a commentaire causse of the syntax.