vote up 0 vote down star

A little fun with Java this time. I want to write a program that reads a code from standard input (line by line, for example), like:

// some comment
class Main {
    /* blah */
    // /* foo
    foo();
    // foo */
    foo2();
    /* // foo2 */
}

finds all comments in it and removes them. I'm trying to use regular expressions, and for now I've done something like this:

private static String ParseCode(String pCode)
{
	String MyCommentsRegex = "(?://.*)|(/\\*(?:.|[\\n\\r])*?\\*/)";
	return pCode.replaceAll(MyCommentsRegex, " ");
}

but it seems not to work for all the cases, e.g.:

System.out.print("We can use /* comments */ inside a string of course, but it shouldn't start a comment");

Any advice or ideas different from regex? Thanks in advance.

flag

80% accept rate
I think your exact example is screwy: the close comment inside the string will close the comment. However, an open comment inside a string that isn't in a comment won't start one. – Grandpa Nov 1 at 12:53
Yep, my bad. I was trying to give something tricky here and tricked myself. – brovar Nov 1 at 12:55

4 Answers

vote up 1 vote down

I think a 100% correct solution using regular expressions is either inhuman or impossible (taking into account escapes, etc.).

I believe the best option would be using ANTLR- I believe they even provide a Java grammar you can use.

link|flag
I'm not making a code parser/translator or anything similar, just trying to create a simple program that would work as described above ;) – brovar Nov 1 at 13:13
@brovar - he is saying you can't do it without a parser. – Stephen C Nov 1 at 13:33
vote up 0 vote down

Another alternative is to use some library supporting AST parsing, for e.g. org.eclipse.jdt.core has all the APIs you need to do this and more. But then that's just one alternative:)

link|flag
Not allowed to use it here - it's kind of a bet when one of the rules is using basic packages only ;) But thanks anyways, gotta take a look at it. – brovar Nov 1 at 12:50
vote up 0 vote down

The last example is no problem I think:

/* we comment out some code
System.out.print("We can use */ inside a string of course");
we end the comment */

... because the comment actually ends with "We can use */. This code does not compile.

But I have another problematic case:

int/*comment*/foo=3;

Your pattern will transform this into:

intfoo=3;

...what is invalid code. So better replace your comments with " " instead of "".

link|flag
Just saw that too, thanks. – brovar Nov 1 at 12:58
vote up 0 vote down

You may have already given up on this by now but I was intrigued by the problem.

I believe this is a partial solution:

Native regex = //.|("(?:\[^"]|\"|.)?")|(?s)/*.*?*/

In Java:

String clean = original.replaceAll( "//.*|(\"(?:\\\\[^\"]|\\\\\"|.)*?\")|(?s)/\\*.*?\\*/", "$1 " );

This appears to properly handle comments embedded in strings as well as properly escaped quotes inside strings. I threw a few things at it to check but not exhaustively.

There is one compromise in that all "" blocks in the code will end up with space after them. Keeping this simple and solving that problem would be very difficult given the need to cleanly handle:

int/* some comment */foo = 5;

A simple Matcher.find/appendReplacement loop could conditionally check for group(1) before replacing with a space and would only be a handful of lines of code. Still simpler than a full up parser maybe. (I could add the matcher loop too if anyone is interested.)

link|flag
Note: by "partial solution" I mean that I haven't come up with a case yet where it fails and that using it strictly in a replaceAll() will add an extra space after "quoted" strings. – PSpeed Nov 19 at 7:19
Hi, thanks for your answer, I've just found it. I've already solved the problem another way, but I'm going to try it when I get home, as it looks quite interesting. – brovar Nov 23 at 10:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.