Tagged Questions
The removing-comments tag has no wiki summary.
14
votes
7answers
9k views
Best way to automatically remove comments from PHP code
Whats the best way to remove comments from a PHP file?
I want to do something similar to strip-whitespace() - but it shouldn't remove the line breaks as well.
EG:
I want this:
<?PHP
// ...
2
votes
11answers
2k views
a C++ program to remove comments
I'm trying to create a program that takes a text file of c++ code and outputs another
file with that code, minus any comments that it contains.
Assuming that rFile and wFile are defined as follows:
...
1
vote
5answers
3k views
Script to remove comments in Java
Does anyone know how (or process) to remove comments from Java class file at build time? i would like to do this for specific packages in the project when the project is build using Ant. Any ANT ...