How do I remove multi-line C style comments like:
/* comments
comments
comments
comments */
I am able to remove comments in one line like /* comments */
by using several codes provided in other questions.
s#/\*[\s\S]*?\*/##sg;
s#/\*(.*?)\*/##sg;
s#/\*[^*]*\*+([^/*][^*]*\*+)*/|("(\\.|[^"\\])*"|'(\\.|[^'\\])*'|.[^/"'\\]*)#defined $2 ? $2 : ""#gse
All three regexes above do not work with multi-line comments. How can they be handled?
I would do like,
Example: