I have a dir with many files. I want to remove all the comments of that files. How do I do that?
The files looks like this (everything what is between the /* and the */ are comment):
/* */ import java.util.ArrayList;
I have a dir with many files. I want to remove all the comments of that files. How do I do that?
The files looks like this (everything what is between the /* and the */ are comment):
/* */ import java.util.ArrayList;
Copy your files somewhere else first. If as in your example the comment is on one line do
Since they are always on a single line and multiple occurences on the same line seem to be excluded:
However, in case of multiple occurences on the same line: