vote up 0 vote down star

I wrote a method to remove single line comments from a C++ source file:


def stripRegularComments(text)
 {
  def builder = new StringBuilder()
  text.eachLine {
   def singleCommentPos = it.indexOf("//")
   def process = true
   if(singleCommentPos > -1)
   {
    def counter = 0
    it.eachWithIndex 
    { obj,i ->
     if((obj == '\'') || (obj == '"'))
      counter++
     if(i == singleCommentPos)
     {
      process = ((counter % 2) == 1)
      if(!process)
       return
     } 
    }

    if(!process)
    {
     def line = it.substring(0,singleCommentPos)
     builder << line << "\n"
    }
    else
    {
     builder << it << "\n" 
    }
   }
   else
   {
    builder << it << "\n"
   }
  }
  return builder.toString()
 }
And I tested it with :

println a.stripRegularComments("""
this is a test inside double quotes "//inside double quotes"
this is a test inside single quotes '//inside single quotes'
two// a comment?//other
single //comment
""")
It produces this output:
this is a test inside double quotes "//inside double quotes"
this is a test inside single quotes '//inside single quotes'
two
single

Are there some cases I'm missing?

flag
1  
Those are C++ comments. C uses /* and */ to delimit commented sections. – D.Shawley Oct 24 at 16:19
I've edited the question. Thanks! – Geo Oct 24 at 16:21
Just a tip; you might want to look into Regular Expressions – R.A Oct 24 at 16:25
1  
And while you look at regexps, look at Perl. Perl is extremely powerful and easy when it comes to creating text manipulation scripts. – rsp Oct 24 at 16:32
1  
I'd just like to know WHY you're stripping comments out of source code. It doesn't seem like that good an idea. I mean I think we'd all agree that comments in source are a good thing and should be encouraged. – Glen Oct 24 at 18:17
show 7 more comments

7 Answers

vote up 2 vote down

I think you are missing the /* comment */ case.

link|flag
I know, I'm planning on doing that after I make sure I've covered the cases for // – Geo Oct 24 at 16:22
vote up 10 vote down

The fun ones are formed by trigraphs and line continuations. My personal favorite is:

/??/
* this is a comment *??/
/
link|flag
Is this a multiline comment? – Geo Oct 24 at 16:22
Does anyone even format their comments this way? – aviraldg Oct 24 at 16:24
2  
I haven't seen that in a source file yet. – Geo Oct 24 at 16:25
@aviraldg: I hope no one would ever do such a thing, but it is within the Standard so it is legal. – D.Shawley Oct 24 at 18:01
@Geo: oops... yes... this is a multiline since it relies on line continuation (backslash). I've found accidental line continuation using ??/ at the end of a comment before - basically, // a comment??/ will comment out the following line. Technically a multiline comment, but completely by accident. – D.Shawley Oct 24 at 18:05
show 2 more comments
vote up 5 vote down

You don't seem to handle escaped quotes, like:

"Comment\"//also inside string"

versus

"Comment"//not inside string"
link|flag
You're right! Thanks for the catch! – Geo Oct 24 at 16:49
vote up 6 vote down

I think you can't handle

  puts("Test \
    // not a comment");

and this is also likely to make problems:

  puts("'"); // this is a comment
link|flag
You're right! I'll have to rethink my approach. – Geo Oct 24 at 16:49
vote up 9 vote down
// Single line comments can\
actually be multi line.
link|flag
4  
I like how the syntax highlighter failed on this one. – Kawa Oct 24 at 19:28
1  
@Kawa: that’s a limitation of the flawed approach to syntax highlighting that Stack Overflow is taking. :-( Even for much more conventional code the results are flaky. – Konrad Rudolph Oct 25 at 12:17
vote up 1 vote down

The handling of \ character at the end of the line is performed at the earlier translation phase (phase 2) than replacement of comments (phase 3). For this reason, a // comment can actually occupy more than one line in the original source file

// This \
whole thing \
is actually \
a single comment

P.S. Oh... I see this is already posted. OK, I'll keep it alive just for mentioning phases of translation :)

link|flag
vote up -1 vote down

This is always a favourite:

// Why doesn't this run?????????????????????/
foo(bar);
link|flag
I think I have this handled. – Geo Oct 24 at 20:30
i think you misread the question – Niek H. Oct 25 at 12:33

Your Answer

Get an OpenID
or

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